coryd.dev/src/meta/webfinger.json.liquid

34 lines
1.1 KiB
Text

---
permalink: "/.well-known/webfinger"
layout: null
eleventyExcludeFromCollections: true
excludeFromSitemap: true
---
{
"subject":"acct:{{ globals.webfinger_username }}@{{ globals.webfinger_hostname }}",
"aliases":[
"https://{{ globals.webfinger_hostname }}/@{{ globals.webfinger_username }}",
"https://{{ globals.webfinger_hostname }}/users/{{ globals.webfinger_username }}"
],
"links":[
{
"rel":"http://webfinger.net/rel/profile-page",
"type":"text/html",
"href":"https://{{ globals.webfinger_hostname }}/@{{ globals.webfinger_username }}"
},
{
"rel":"self",
"type":"application/activity+json",
"href":"https://{{ globals.webfinger_hostname }}/users/{{ globals.webfinger_username }}"
},
{
"rel":"http://ostatus.org/schema/1.0/subscribe",
"template":"https://{{ globals.webfinger_hostname }}/authorize_interaction?uri={uri}"
},
{
"rel":"http://webfinger.net/rel/avatar",
"type":"image/png",
"href":"{{ globals.cdn_url }}{{ globals.avatar }}?class=squarebase"
}
]
}