aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html
blob: de91b69ec882a36cdc378aac5d32e0adf953cf05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ partial "header.html" . }}
<main>
	{{ partial "titleblock.html" . }}
	<p>
		<ul>
			{{ range (where .Data.Pages "Section" "!=" "") }}
			<li>{{ .Date.Format "Jan 2nd, 2006" }}
				<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
			</li>
			{{ end }}
		</ul>
	</p>
</main>
{{ partial "footer.html" . }}