13 lines
431 B
HTML
Raw Permalink Normal View History

2025-01-07 13:02:12 -07:00
{{ define "main" }}
2025-01-07 19:43:39 -07:00
<section class="h-feed">
<h2>{{ .Title }}</h2>
2025-01-07 13:02:12 -07:00
<ul>
{{ range .Pages }}
2025-01-07 19:43:39 -07:00
<li class="h-entry">
<a href="{{ .RelPermalink }}" class="p-name u-url">{{ .Title }}</a>
<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
2025-01-07 13:02:12 -07:00
</li>
{{ end }}
</ul>
</section>
2025-01-07 19:43:39 -07:00
{{ end }}