this repo has no description
1{{define "title"}} log | {{ .RepoInfo.OwnerWithAt }} / {{ .RepoInfo.Name }} {{end}} 2 3{{define "content"}} 4 5<h1> 6log | {{ .RepoInfo.OwnerWithAt }} / {{ .RepoInfo.Name }} 7</h1> 8 <main> 9 <div class="log"> 10 {{ range .Commits }} 11 <div> 12 <div><a href="/{{ $.RepoInfo.OwnerWithAt }}/{{ $.RepoInfo.Name }}/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{{end}}