cronyakatsuki.xyz/layouts/_default/list.html

15 lines
284 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 }}">
{{ .Date.Format "02-01-2006" }} || {{ .Title }} <span class="comment"></span>
</a><br>
{{ end }}
</section>
{{ end }}