diff --git a/src/feed.11ty.liquid b/src/feed.11ty.liquid index b85184ee..9a6f2439 100644 --- a/src/feed.11ty.liquid +++ b/src/feed.11ty.liquid @@ -10,8 +10,10 @@ permalink: '/feed.json' "feed_url": "https://coryd.dev/feed.json", "items": [{% for item in posts %} { + "id": "{{ site.url }}{{ item.url }}" "title": "{{ item.data.title }}", - "url": "{{ item.url }}" + "url": "{{ site.url }}{{ item.url }}", + "date_published" "{{ item.date | date: "%m.%d.%Y" }}" }{% if not forloop.last %},{% endif %} {% endfor %} ] diff --git a/src/feeds/webfinger.liquid b/src/feeds/webfinger.liquid deleted file mode 100644 index 314b7f81..00000000 --- a/src/feeds/webfinger.liquid +++ /dev/null @@ -1,35 +0,0 @@ ---- -permalink: '.well-known/webfinger' -eleventyExcludeFromCollections: true -dynamicPermalink: false ---- -{ - "subject": "acct:coryd@social.lol", - "aliases": ["https://coryd.dev", "https://social.lol/@coryd", "https://social.lol/users/coryd"], - "links": [ - { - "rel": "http://webfinger.net/rel/avatar", - "type": "image/webp", - "href": "https://coryd.dev/static/images/avatar.webp" - }, - { - "rel": "http://webfinger.net/rel/profile-page", - "type": "text/html", - "href": "https://coryd.dev" - }, - { - "rel": "http://webfinger.net/rel/profile-page", - "type": "text/html", - "href": "https://social.lol/users/coryd" - }, - { - "rel": "self", - "type": "application/activity+json", - "href": "https://social.lol/users/coryd" - }, - { - "rel": "http://ostatus.org/schema/1.0/subscribe", - "template": "social.lol/authorize_interaction?uri={uri}" - } - ] -} \ No newline at end of file diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid index 11dfd5b1..9d22890d 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_published": {{ item.date_published | date: "%m.%d.%Y" }} }{% if not forloop.last %},{% endif %} {% endfor %} ] diff --git a/vercel.json b/vercel.json index 815b98d0..f533da6e 100644 --- a/vercel.json +++ b/vercel.json @@ -1,4 +1,10 @@ { + "rewrites": [ + { + "source": "./well-known/webfinger", + "destination": "https://social.lol/.well-known/webfinger?resource=acct:cory@social.lol" + } + ], "redirects": [ { "source": "/blog/fixing-safari-icloud-syncing",