wires

summary refs log tree commit diff
path: root/layouts/list.html
blob: ea76a2486b7a5a90ea2eee95fbe4e2e28f617d2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{ define "main" }}
<h2>{{ .Title }}</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}