Files
tylerperkins.xyz/layouts/_default/list.html
2026-01-16 23:17:05 -05:00

13 lines
294 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages }}
<article style="margin-bottom: 25px;">
<h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
<p class="date">{{ .Date.Format "January 2, 2006" }}</p>
</article>
{{ end }}
<p><a href="/">&larr; Back to home</a></p>
{{ end }}