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