Files
will 19034a026e Initial scaffold: Hugo site for west575.org
Blog with contact form and newsletter signup, structured like the
other Reground-hosted sites but with its own visual identity.
2026-08-27 05:28:14 -04:00

15 lines
334 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul class="post-list">
{{ range .Pages }}
<li class="post-list-item">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if not .Date.IsZero }}
<span class="post-date">{{ .Date.Format "January 2, 2006" }}</span>
{{ end }}
</li>
{{ end }}
</ul>
{{ end }}