summaryrefslogtreecommitdiff
path: root/template/home.tmpl
blob: ca16bb05f602d3cd1c18dc50a628c2a6a355ad32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{/* This file is combined with the root.tmpl to display the blog home page. */}}

{{define "title"}}dim13{{end}}

{{define "content"}}
	{{range .Data}}
		{{template "doc" .}}
	{{end}}
	<footer>
	<p>See the <a href="{{.BasePath}}/index">index</a> for more articles.</p>
	</footer>
{{end}}