@ ff7903274f2065077e05ba4acc12fe480e8bd82f | 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}}