From 1cc5ec5deaa2bc8f5a719b841fd8f2918f20d291 Mon Sep 17 00:00:00 2001 From: IanWold Date: Sat, 31 Aug 2024 08:04:27 -0500 Subject: [PATCH] Correct bug counting number of years in archive template --- Templates/archive.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Templates/archive.liquid b/Templates/archive.liquid index 51085b7..dffb7a7 100644 --- a/Templates/archive.liquid +++ b/Templates/archive.liquid @@ -22,7 +22,7 @@ {% assign intYear = year | plus: 0 %} {% if hidePastArticles == false or intYear > 2020 %}
- {% if year.size > 1 %} + {% if years.size > 1 %}
{{ year }}
{% endif %}