diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid index 334a2d16..f7e9f1f2 100644 --- a/src/feed.11ty.liquid +++ b/src/feed.11ty.liquid @@ -3,8 +3,12 @@ permalink: '/feed.json' --- {% assign posts = collections.posts | reverse %} { -"posts": [ -{% for item in posts %} +"version": "https://jsonfeed.org/version/1", +"title": "All posts • Cory Dransfeldt" +"icon": "https://coryd.dev/static/images/avatar.webp", +"home_page_url": "https://coryd.dev", +"feed_url": "https://coryd.dev/feed.json", +"items": [{% for item in posts %} { "title": "{{ item.data.title }}", "url": "{{ item.url }}" diff --git a/src/feeds/webfinger.liquid b/src/feeds/webfinger.liquid index 649412bd..314b7f81 100644 --- a/src/feeds/webfinger.liquid +++ b/src/feeds/webfinger.liquid @@ -1,5 +1,7 @@ --- permalink: '.well-known/webfinger' +eleventyExcludeFromCollections: true +dynamicPermalink: false --- { "subject": "acct:coryd@social.lol", diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index 968cd754..d5c61df5 100644 --- a/src/follow.11ty.liquid +++ b/src/follow.11ty.liquid @@ -3,8 +3,12 @@ permalink: '/follow.json' --- {% assign posts = follow.posts %} { -"posts": [ -{% for item in posts %} +"version": "https://jsonfeed.org/version/1", +"title": "All activity • Cory Dransfeldt" +"icon": "https://coryd.dev/static/images/avatar.webp", +"home_page_url": "https://coryd.dev", +"feed_url": "https://coryd.dev/follow.json", +"items": [{% for item in posts %} { "title": "{{ item.title }}", "url": "{{ item.url }}"