From 74c7f99d3a231a91e4dd126051d04daba589206c Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 12:25:39 -0700 Subject: [PATCH] fix: dates as strings --- src/follow.11ty.liquid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index a307e226..d1d1e26e 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -13,7 +13,7 @@ permalink: '/follow.json' "id": "{{ item.id }}", "title": "{{ item.title }}", "url": "{{ item.url }}", - "date_published": {{ item.date_published | date: "%m.%d.%Y" }} + "date_published": "{{ item.date_published | date: "%m.%d.%Y" }}" }{% if not forloop.last %},{% endif %} {% endfor %} ]