webbed-site/themes/webbed-theme/layouts/section.html
2026-02-14 23:03:08 +01:00

12 lines
352 B
HTML

{{ define "main" }}
<section>
<h1>{{ .Title }}</h1>
{{ .Content }}
</section>
{{ range .Pages }}
<section>
<p><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> | <span class="date"> {{ .Date | time.Format "2006-01-02, 15:04 -07:00" }}</span></p>
<p class="summary">{{ .Summary }}</p>
</section>
{{ end }}
{{ end }}