templates/log.html (view raw)
1{{ define "log" }}
2<!doctype html>
3<html>
4{{ template "head" . }}
5
6 {{ template "repoheader" . }}
7 <body>
8 {{ template "nav" . }}
9 <main>
10 {{ $repo := .name }}
11 <div class="log">
12 {{ range .commits }}
13 <div>
14 <div><a href="/{{ $repo }}/commit/{{ .Commit.Hash.String }}" class="commit-hash">{{ slice .Commit.Hash.String 0 8 }}</a></div>
15 <pre>{{ .Commit.Message }}</pre>
16 </div>
17 <div class="commit-info">
18 {{ .Commit.Author.Name }} <a href="mailto:{{ .Commit.Author.Email }}" class="commit-email">{{ .Commit.Author.Email }}</a>
19 <div>{{ .Commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
20 </div>
21 {{ end }}
22 </div>
23 </main>
24 </body>
25</html>
26{{ end }}