1
0
Fork 0
faulty.equipment/layouts/pages/list.html
Hamcha 5be237d554
All checks were successful
continuous-integration/drone/push Build is passing
colors!
2023-09-12 13:05:38 +02:00

11 lines
No EOL
453 B
HTML

{{ define "main" }}
<h1>All pages</h1>
<p>These documents are a personal dump of notes and may change at any time.</p>
<section class="post-list">
{{ range .Pages.ByPublishDate.Reverse }}
<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>
{{ end }}
</section>
{{ end }}