blob: bd8c69066d8d89bb5cef8cc7b4d88d3d76739285 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ define "main" }}
<section>
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul>
{{ range .Pages }}
<li>
<span>{{ .Date.Format "2006-01-02" }}</span> - <a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}
|