summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: c8773b611b0aa687bebc4b8fb40b9efcbd7c4c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
{{ .Content }}

<div class="columns">
	<ul>
		{{ range .Pages }}
		<li>{{ .Date.Format "02/01/06" }} - <a href="{{ .RelPermalink }}/">{{ .Title }}</a></li>
		{{ end }}
	</ul>
</div>
{{ end }}