14 lines
300 B
HTML
14 lines
300 B
HTML
{{ 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" . }}
|