From cf4cc931a483425d9342dab563f92bf7aba8c083 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 10:58:17 -0700 Subject: [PATCH] fix: json follow feed title --- 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 1bdf9459..968cd754 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -6,7 +6,7 @@ permalink: '/follow.json' "posts": [ {% for item in posts %} { - "title": "{{ item.data.title }}", + "title": "{{ item.title }}", "url": "{{ item.url }}" }{% if not loop.last %},{% endif %} {% endfor %}