blob: 0c885ce6155c6951bb131ff6c18ea8c981c69b47 (
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="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ partial "footer.html" . }}
|