hugo-rottenwheel/layouts/index.html

13 lines
No EOL
289 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>{{ .Description }}</p>
<h2>Latest Posts</h2>
<ul>
{{ range where .Site.RegularPages "Section" "posts" }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
</li>
{{ end }}
</ul>
{{ end }}