2026-01-10 13:42:14 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
{{ range .Pages }}
|
2026-04-13 21:08:06 +01:00
|
|
|
{{ $dateMachineP := .PublishDate | time.Format "2006-01-02T15:04:05-07:00" }}
|
|
|
|
|
{{ $dateHumanP := .PublishDate | time.Format ":date_long" }}
|
2026-01-10 13:42:14 +00:00
|
|
|
<section>
|
|
|
|
|
<h2 class="no-bottom-margin"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
2026-04-13 21:08:06 +01:00
|
|
|
<h4 class="no-top-margin"><time datetime="{{ $dateMachineP }}">{{ $dateHumanP }}</time></h4>
|
2026-01-10 13:42:14 +00:00
|
|
|
{{ .Summary }}
|
|
|
|
|
</section>
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ end }}
|