Files
Grasswren/layouts/_default/list.html
T
2026-07-11 14:54:56 -04:00

11 lines
188 B
HTML

{{ define "main" }}
<section>
<dl>
{{ range .Pages }}
<time>{{ time.Format "2006-01-02" .Date }}</time>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
</dl>
</section>
{{ end }}