this repo has no description
1<html>
2{{ template "layouts/head" . }}
3
4 {{ template "layouts/repo-header" . }}
5 <body>
6 {{ template "layouts/nav" . }}
7 <main>
8 {{ $repo := .name }}
9 <div class="log">
10 {{ range .commits }}
11 <div>
12 <div><a href="/{{ $repo }}/commit/{{ .Hash.String }}" class="commit-hash">{{ slice .Hash.String 0 8 }}</a></div>
13 <pre>{{ .Message }}</pre>
14 </div>
15 <div class="commit-info">
16 {{ .Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a>
17 <div>{{ .Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}</div>
18 </div>
19 {{ end }}
20 </div>
21 </main>
22 </body>
23</html>