all repos — legit @ 647216cad9218349e22e08fdfe08c3f59ae3cd26

Unnamed repository; edit this file 'description' to name the repository.

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/{{ .Hash.String }}" class="commit-hash">{{ slice .Hash.String 0 8 }}</a></div>
15          <pre>{{ .Message }}</pre>
16        </div>
17        <div class="commit-info">
18          {{ .Author.Name }} <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a>
19          <div>{{ .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 }}