@ e8fb0cb9983fb3d6d17b77afaa74beabc7656ca5 | history
{{define "title"}}{{.Repo}} @ {{.Ref}}{{end}}
{{define "content"}}
<h1><a href="/{{.Repo}}/tree/{{.Ref}}">{{.Repo}}</a></h1>
<p>@ {{.Ref}}</p>
<p><a href="/{{.Repo}}/refs">refs</a></p>
<h2>commits</h2>
{{range .Commits}}
<p><a href="/{{$.Repo}}/commit/{{.Hash}}">{{.Hash}}</a></p>
<p>{{.Author}}</p>
<p title="{{rfc3339 .When}}">{{humanize .When}}</p>
<pre>{{.Message}}</pre>
<br>
{{end}}
{{end}}
{{define "commits"}}
{{template "base" .}}
{{end}}