hugo-sr2/layouts/section.html

14 lines
455 B
HTML
Raw Normal View History

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