fix: feed schema + webfinger
This commit is contained in:
parent
0fd62529cf
commit
da058d3ffd
4 changed files with 10 additions and 37 deletions
|
@ -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 %}
|
||||
]
|
||||
|
|
|
@ -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}"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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 %}
|
||||
]
|
||||
|
|
|
@ -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",
|
||||
|
|
Reference in a new issue