templates/log.html (view raw)
1{{ define "log" }}
2<html>
3{{ template "head" . }}
4
5 <header>
6 <h1>{{ .meta.Title }}</h1>
7 <h2>{{ .meta.Description }}</h2>
8 </header>
9 <body>
10 {{ template "nav" . }}
11 <main>
12 {{ $repo := .name }}
13 {{ range .commits }}
14 <p><a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}<a>
15 — {{ .Author.Name }}</p>
16 <p><pre>{{ .Message }}</pre></p>
17 {{ end }}
18 </main>
19 </body>
20</html>
21{{ end }}