cronyakatsuki.xyz/layouts/_default/list.html

15 lines
295 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 19:04:36 +02:00
{{ .Date.Format .Site.Params.dateFormat }} || {{ .Title }} <span class="comment"></span>
2023-10-05 21:05:32 +02:00
</a><br>
{{ end }}
</section>
{{ end }}