blob: 3a555e54af22a38a026e64f2cb63d76f9f394e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ partial "header.html" . }}
<main>
{{ partial "titleblock.html" . }}
<p>
{{ .Content }}
<ul>
{{ range where .Site.RegularPages "Section" "posts" }}
<li>{{ .Date.Format "January 2, 2006" }}
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
</p>
</main>
{{ partial "footer.html" . }}
|