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

9 lines
411 B
HTML

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