depp

No frills static page generator for Git repositories

git clone https://git.8pit.net/depp.git

 1<section id="commits">
 2	<h2>commits</h2>
 3	<table class="commits">
 4		<tbody>
 5			{{ range .Commits }}
 6				<tr>
 7					<td class="date">{{ .Author.When.Format "2006-01-02"}}</td>
 8					<td class="description">{{ .Summary }}</td>
 9					<td class="author">{{ .Author.Name }}</td>
10				</tr>
11			{{ end }}
12		</tbody>
13	</table>
14
15	<p>Clone the repository to access all {{ .Total }} commits.</p>
16</section>