From 0fd62529cf7859ba34cb178288413cc8599795ae Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 28 Mar 2023 11:26:48 -0700 Subject: [PATCH] fix: follow data --- src/_data/follow.js | 9 ++++++++- src/follow.11ty.liquid | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/_data/follow.js b/src/_data/follow.js index 09a230dc..ba80b59c 100644 --- a/src/_data/follow.js +++ b/src/_data/follow.js @@ -8,6 +8,13 @@ module.exports = async function () { const entries = feed.getEntries() const res = await entries const activity = { posts: [] } - res.forEach((entry) => activity.posts.push({ title: entry.title, url: entry.url })) + res.forEach((entry) => + activity.posts.push({ + id: entry.url, + title: entry.title, + url: entry.url, + date_published: entry.published, + }) + ) return activity } diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index c5fbdd05..11dfd5b1 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -10,8 +10,10 @@ permalink: '/follow.json' "feed_url": "https://coryd.dev/follow.json", "items": [{% for item in posts %} { + "id": "{{ item.id }}", "title": "{{ item.title }}", "url": "{{ item.url }}" + "date_published": {{ item.date_published }} }{% if not forloop.last %},{% endif %} {% endfor %} ]