forked from tangled.org/core
this repo has no description
1{{define "title"}} log | {{ .RepoInfo.FullName }} {{end}} 2 3{{define "content"}} 4 5<h1> 6log | {{ .RepoInfo.FullName }} 7</h1> 8 <main> 9 <div class="log"> 10 {{ range .Commits }} 11 <div> 12 <div><a href="/{{ $.RepoInfo.FullName }}/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 <hr /> 20 {{ end }} 21 </div> 22 </main> 23{{end}}