cronyakatsuki.xyz/layouts/taxonomy/tag.html

12 lines
254 B
HTML
Raw Normal View History

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