chore: webfinger
This commit is contained in:
parent
7a79133124
commit
b74fdc2072
4 changed files with 36 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
permalink: "/ai.txt"
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
dynamicPermalink: false
|
||||
---
|
||||
User-Agent: *
|
||||
Disallow: /
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
permalink: "/robots.txt"
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
dynamicPermalink: false
|
||||
---
|
||||
Sitemap: https://coryd.dev/sitemap.xml
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
permalink: "/sitemap.xml"
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
|
33
src/pages/meta/webfinger.json.liquid
Normal file
33
src/pages/meta/webfinger.json.liquid
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
permalink: "/.well-known/webfinger"
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
{
|
||||
"subject":"acct:cory@follow.coryd.dev",
|
||||
"aliases":[
|
||||
"https://follow.coryd.dev/@cory",
|
||||
"https://follow.coryd.dev/users/cory"
|
||||
],
|
||||
"links":[
|
||||
{
|
||||
"rel":"http://webfinger.net/rel/profile-page",
|
||||
"type":"text/html",
|
||||
"href":"https://follow.coryd.dev/@cory"
|
||||
},
|
||||
{
|
||||
"rel":"self",
|
||||
"type":"application/activity+json",
|
||||
"href":"https://follow.coryd.dev/users/cory"
|
||||
},
|
||||
{
|
||||
"rel":"http://ostatus.org/schema/1.0/subscribe",
|
||||
"template":"https://follow.coryd.dev/authorize_interaction?uri={uri}"
|
||||
},
|
||||
{
|
||||
"rel":"http://webfinger.net/rel/avatar",
|
||||
"type":"image/png",
|
||||
"href":"https://cdn.coryd.dev/f7516bb2-d914-479f-91c6-1bf96f3968bf.png?class=squarebase"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue