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

12 lines
271 B
HTML

{{ define "main" }}
<div class="boxed">
<p>
<ul>
{{ range .Pages.ByPublishDate.Reverse }}
<li>[ {{ .PublishDate | time.Format "2006-01-01" }} ] <a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</p>
</div>
{{ end }}