Blog/themes/papercut/layouts/_default/list.html

17 lines
468 B
HTML
Raw Normal View History

2022-08-28 23:54:19 +03:00
{{ define "main" }}
<div class="container">
<main>
<section class="bg-white border rounded shadow-sm p-3 mb-3">
2022-09-02 23:14:15 +03:00
<div class="list-group w-auto">
2022-08-28 23:54:19 +03:00
{{ range .Pages.ByPublishDate.Reverse }}
2022-09-02 23:14:15 +03:00
<div class="list-group-item list-group-item-action d-flex gap-3 py-3">
<label>{{ .PublishDate.Format "2006-01-02" }}</label>
2022-08-28 23:54:19 +03:00
<a class="text-clean" href="{{ .RelPermalink }}">{{ .Title }}</a>
2022-09-02 23:14:15 +03:00
</div>
2022-08-28 23:54:19 +03:00
{{ end }}
2022-09-02 23:14:15 +03:00
</div>
2022-08-28 23:54:19 +03:00
</section>
</main>
</div>
{{ end }}