aboutsummaryrefslogtreecommitdiff
path: root/tmpl/index
blob: 7a4eba56d7f21195b0b1363efda292f1c884590a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{define "title"}}Index{{end}}
{{define "content"}}
<table>
{{range .Pages}}
	<tr>
	<td><a href="/view/{{.Name}}">{{.Name}}</a></td>
	<td>{{.ModTime.Format "2006 Jan 2 15:04"}}</td>
	<td>{{.Size}} bytes</td>
	</tf>
{{end}}
</table>
{{end}}