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

14 lines
218 B
HTML

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