cronyakatsuki.xyz/layouts/_default/list.html
2023-10-06 20:10:52 +02:00

14 lines
264 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content}}
<section class="list">
{{ range .Pages.ByPublishDate.Reverse }}
<a href="{{ .RelPermalink }}">
{{ .Date.Format .Site.Params.dateFormat }} || {{ .Title }}</a><br />
{{ end }}
</section>
{{ end }}