@ e627440a1bc80b93c0b3cabede4f05680ad96ab9 | history
{{define "title"}}{{.Title}}{{end}}
{{define "content"}}
<h1>{{.Title}}</h1>
<h4>{{.Header}}</h4>
<table>
<tbody>
{{range .Repos}}
<tr>
<td><a href="/{{.Name}}">{{.Name}}</a></td>
<td>{{humanize .Updated}}</td>
</tr>
{{end}}
</tbody>
</table>
{{end}}
{{define "repos"}}
{{template "base" .}}
{{end}}