From b5d1f8b60e8d0240134ac0ee4650ff23d0128e99 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 19 Sep 2023 18:20:46 -0700 Subject: [PATCH] fix: feed dates --- src/_includes/partials/feeds/rss.liquid | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/_includes/partials/feeds/rss.liquid b/src/_includes/partials/feeds/rss.liquid index 63d8a465..b902afc6 100644 --- a/src/_includes/partials/feeds/rss.liquid +++ b/src/_includes/partials/feeds/rss.liquid @@ -5,6 +5,7 @@ {{ title }} {{ description }} {{ permalink | absoluteUrl: site.url }} + {{ updated }} {{ title }} {{ permalink | absoluteUrl: site.url }} @@ -16,7 +17,7 @@ {{ entry.title | escape }} {{ entry.url | stripUtm | encodeAmp }} - {{ entry.date }} + {{ entry.date | stringToDate | dateToRfc822 }} {{ entry.url | stripUtm | encodeAmp }} {{ entry.excerpt | markdown | escape }}