blob: 5b202e07127829a13a2a0e90e4d34201d4db8906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ partial "header.html" . }}
<h1>{{ site.Title }}</h1>
<ul>
{{ range (where site.RegularPages "Section" "==" "posts") }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ partial "footer.html" . }}
|