mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2025-01-03 17:39:47 +00:00
13 lines
289 B
HTML
13 lines
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 }}
|