blog/themes/blog.jaseg.de/layouts/index.html
2022-03-01 11:11:15 +01:00

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" . }}