{{ define "main" }}
{{ $sd := .Params.start_date }}
{{ $ed := .Params.end_date }}
{{ time.Format "January 2006" $sd }} – {{ time.Format "January 2006" $ed }}
{{ 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 }}
Posted {{ .Date | time.Format "2006-01-02" }}
{{ $audioLink := printf "$3" (substr .Site.BaseURL 0 -1) }}
{{ replaceRE `` $audioLink .Content | safeHTML }}
{{ end }}
{{ end }}