Files
davideisinger.com/themes/v2/layouts/archive/list.html
David Eisinger 80e6e1b4da Page breaks
2025-02-05 22:59:58 -05:00

23 lines
562 B
HTML

{{ define "main" }}
<section>
{{ .Content }}
</section>
{{ range (sort (.Site.RegularPages.RelatedTo (keyVals "tags" "dispatch")) "Date" "asc") }}
{{ $page := . }}
<section class="page-break">
<h2>
{{ .Title }}
</h2>
<h3>
Posted {{ .Date | time.Format "2006-01-02" }}
</h3>
{{ $audioLink := printf "<a href=\"%s$1\">$3</a>" (substr .Site.BaseURL 0 -1) }}
{{ replaceRE `<audio controls src="((.*)/(.*).mp3)"></audio>` $audioLink .Content | safeHTML }}
</section>
{{ end }}
{{ end }}