Files
davideisinger.com/themes/v2/layouts/archive/list.html
David Eisinger dade247326 Date stuff
2025-02-05 22:59:58 -05:00

24 lines
675 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{ define "main" }}
<section class="page-break">
{{ time.Format "January 2006" .Params.start_date }}
{{ time.Format "January 2006" .Params.end_date}}
</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 }}