1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{.Name}}</title>
</head>
<body>
<header>
<h1><a href="/">Project</a>: Branch: <a href="./">{{.Name}}</a></h1>
</header>
<main>
<hr>
{{- with $list := .Commits}}
{{- with index $list 0 }}
<h2><a href="/commit/{{.Hash}}/">HEAD</a></h2>
{{- end}}
<table>
<thead>
<tr>
<th>Date</th>
<th>Commit</th>
<th>Subject</th>
<th>Author</th>
</tr>
</thead>
<tbody>
{{- range $list}}
<tr>
<td>
<time datetime="{{.Date.Format "2006-01-02"}}">{{.Date.Format "01/02/06 15:04"}}</time>
</td>
<td><code>{{.Abbr}}</code></td>
<td><a href="/commit/{{.Hash}}/">{{.Subject}}</a></td>
<td><a href="mailto:{{.Author.Email}}">{{.Author.Name}}</a></td>
</tr>
{{- end}}
</tbody>
</table>
{{- else}}
<p>…</p>
{{- end}}
<hr>
</main>
<footer>
<p>Made with <a href="https://github.com/thewhodidthis/gtx">gtx</a> ›</p>
</footer>
</body>
</html>
|