hugo-theme-hax0r/layouts/_default/list.html

12 lines
271 B
HTML
Raw Normal View History

2023-03-23 08:00:12 +01:00
{{ define "main" }}
<div class="boxed">
<p>
<ul>
{{ range .Pages.ByPublishDate.Reverse }}
2023-03-23 11:49:13 +01:00
<li>[ {{ .PublishDate | time.Format "2006-01-01" }} ] <a href="{{ .Permalink }}">{{ .Title }}</a></li>
2023-03-23 08:00:12 +01:00
{{ end }}
</ul>
</p>
</div>
{{ end }}