mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2024-11-09 20:20:04 +00:00
11 lines
241 B
HTML
11 lines
241 B
HTML
|
{{ define "main" }}
|
||
|
|
||
|
<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 }}
|