31 lines
881 B
HTML
31 lines
881 B
HTML
{{ define "main" }}
|
||
{{ $sd := .Params.start_date }}
|
||
{{ $ed := .Params.end_date }}
|
||
|
||
<section class="page-break">
|
||
{{ time.Format "January 2006" $sd }} – {{ time.Format "January 2006" $ed }}
|
||
</section>
|
||
|
||
{{ range (sort (.Site.RegularPages.RelatedTo (keyVals "tags" "dispatch")) "Date" "asc") }}
|
||
{{ if lt (time.Format "2006-01-02" .Date) (time.Format "2006-01-02" $sd) }}
|
||
{{ continue }}
|
||
{{ end }}
|
||
|
||
{{ if gt (time.Format "2006-01-02" .Date) (time.Format "2006-01-02" $ed) }}
|
||
{{ continue }}
|
||
{{ end }}
|
||
|
||
<section class="page-break">
|
||
<h2>
|
||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
</h2>
|
||
|
||
<h3>
|
||
Posted {{ .Date | time.Format "2006-01-02" }}
|
||
</h3>
|
||
|
||
{{ replaceRE `<audio controls src="((.*)/(.*).mp3)"></audio>` "<a href=\"$1\">$3</a>" .Content | safeHTML }}
|
||
</section>
|
||
{{ end }}
|
||
{{ end }}
|