aboutsummaryrefslogtreecommitdiff
path: root/tmpl/index
blob: bd9472a37efda05d2ba5f5c66181d40b42efbc28 (plain)
1
2
3
4
5
6
7
8
9
{{define "title"}}Index{{end}}
{{define "content"}}
<ul>
{{range .Pages}}
	<li><a href="/view/{{.Name}}">{{.Name}}</a>
		({{.ModTime.Format "2 Jan 2006"}})</li>
{{end}}
</ul>
{{end}}