feat: initial commit

This commit is contained in:
Cory Dransfeldt 2025-03-27 16:46:02 -07:00
commit e214116e40
No known key found for this signature in database
253 changed files with 17406 additions and 0 deletions

View file

@ -0,0 +1,34 @@
---
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"
}
]
}