cronyakatsuki.xyz/layouts/_default/list.html

14 lines
264 B
HTML
Raw Normal View History

2023-10-05 21:05:32 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content}}
<section class="list">
{{ range .Pages.ByPublishDate.Reverse }}
<a href="{{ .RelPermalink }}">
2023-10-06 20:10:52 +02:00
{{ .Date.Format .Site.Params.dateFormat }} || {{ .Title }}</a><br />
2023-10-05 21:05:32 +02:00
{{ end }}
</section>
{{ end }}