diff --git a/themes/v2/layouts/archive/single.html b/themes/v2/layouts/archive/single.html
index 836cfef..6d5c48d 100644
--- a/themes/v2/layouts/archive/single.html
+++ b/themes/v2/layouts/archive/single.html
@@ -1,11 +1,19 @@
{{ define "main" }}
+ {{ $sd := .Params.start_date }}
+ {{ $ed := .Params.end_date }}
+
- {{ time.Format "January 2006" .Params.start_date }} –
- {{ time.Format "January 2006" .Params.end_date}}
+ {{ time.Format "January 2006" $sd }} – {{ time.Format "January 2006" $ed }}
{{ range (sort (.Site.RegularPages.RelatedTo (keyVals "tags" "dispatch")) "Date" "asc") }}
- {{ $page := . }}
+ {{ 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 }}