feat: initial commit
This commit is contained in:
commit
e214116e40
253 changed files with 17406 additions and 0 deletions
34
src/meta/webfinger.json.liquid
Normal file
34
src/meta/webfinger.json.liquid
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue