diff --git a/source/_pages/archive.html b/source/_pages/archive.html index 496dde94..d20b22a0 100644 --- a/source/_pages/archive.html +++ b/source/_pages/archive.html @@ -13,7 +13,9 @@ use: --- {% block content %} -
This is an archive of the {{ data.daily_emails|length|number_format }} email messages I have sent to my daily mailing list since the 12th of August, 2022. Enjoy!
+ {% set daily_emails = data.daily_emails|filter((email) => email.date <= 'now'|date) %} + +This is an archive of the {{ daily_emails|length|number_format }} email messages I have sent to my daily mailing list since the 12th of August, 2022. Enjoy!