This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/meta/webfinger.liquid
Cory Dransfeldt 355aa615b1
fix: misc
2024-03-14 10:50:32 -07:00

35 lines
930 B
Text

---
permalink: '.well-known/webfinger'
eleventyExcludeFromCollections: true
dynamicPermalink: false
---
{
"subject": "acct:cory@social.lol",
"aliases": ["https://coryd.dev", "https://social.lol/@cory", "https://social.lol/users/cory"],
"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/cory"
},
{
"rel": "self",
"type": "application/activity+json",
"href": "https://social.lol/users/cory"
},
{
"rel": "http://ostatus.org/schema/1.0/subscribe",
"template": "social.lol/authorize_interaction?uri={uri}"
}
]
}