1
0
Fork 0
faulty.equipment/layouts/pages/list.html

11 lines
453 B
HTML
Raw Normal View History

2022-06-29 11:40:23 +02:00
{{ define "main" }}
<h1>All pages</h1>
<p>These documents are a personal dump of notes and may change at any time.</p>
2023-09-12 13:05:38 +02:00
<section class="post-list">
2022-06-29 11:40:23 +02:00
{{ range .Pages.ByPublishDate.Reverse }}
2023-09-12 13:05:38 +02:00
<article>
<a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a> <span class="lastmod">(Last modified: <time datetime="{{ .Lastmod | time.Format "2006-01-02"}}">{{ .Lastmod | time.Format "2006-01-02"}}</time>)</span>
</article>
2022-06-29 11:40:23 +02:00
{{ end }}
2023-09-12 13:05:38 +02:00
</section>
2022-06-29 11:40:23 +02:00
{{ end }}