fix: feed schema + webfinger

This commit is contained in:
Cory Dransfeldt 2023-03-28 12:06:43 -07:00
parent 0fd62529cf
commit da058d3ffd
No known key found for this signature in database
4 changed files with 10 additions and 37 deletions

View file

@ -10,8 +10,10 @@ permalink: '/feed.json'
"feed_url": "https://coryd.dev/feed.json", "feed_url": "https://coryd.dev/feed.json",
"items": [{% for item in posts %} "items": [{% for item in posts %}
{ {
"id": "{{ site.url }}{{ item.url }}"
"title": "{{ item.data.title }}", "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 %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}
] ]

View file

@ -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}"
}
]
}

View file

@ -13,7 +13,7 @@ permalink: '/follow.json'
"id": "{{ item.id }}", "id": "{{ item.id }}",
"title": "{{ item.title }}", "title": "{{ item.title }}",
"url": "{{ item.url }}" "url": "{{ item.url }}"
"date_published": {{ item.date_published }} "date_published": {{ item.date_published | date: "%m.%d.%Y" }}
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}
] ]

View file

@ -1,4 +1,10 @@
{ {
"rewrites": [
{
"source": "./well-known/webfinger",
"destination": "https://social.lol/.well-known/webfinger?resource=acct:cory@social.lol"
}
],
"redirects": [ "redirects": [
{ {
"source": "/blog/fixing-safari-icloud-syncing", "source": "/blog/fixing-safari-icloud-syncing",