update fedi link

TODO: noreferer plugin breaks rel=me links
This commit is contained in:
maia arson crimew 2026-02-16 03:50:04 +01:00
parent 974d08c58d
commit 0f31b4bef7
2 changed files with 21 additions and 11 deletions

View file

@ -6,43 +6,53 @@
}, },
{ {
"name": "ko-fi", "name": "ko-fi",
"link": "https://ko-fi.com/nyancrimew" "link": "https://ko-fi.com/nyancrimew",
"me": true
}, },
{ {
"name": "tumblr", "name": "tumblr",
"link": "https://tumblr.com/nyancrimew" "link": "https://tumblr.com/nyancrimew",
"me": true
}, },
{ {
"name": "twitter", "name": "twitter",
"link": "https://twitter.com/awawawhoami" "link": "https://twitter.com/awawawhoami",
"me": true
}, },
{ {
"name": "fediverse", "name": "fediverse",
"link": "https://crimew.gay/maia" "link": "https://soc.tuxpaintadventures.com/@maia",
"me": true
}, },
{ {
"name": "bluesky", "name": "bluesky",
"link": "https://bsky.app/profile/crimew.gay" "link": "https://bsky.app/profile/crimew.gay",
"me": true
}, },
{ {
"name": "instagram", "name": "instagram",
"link": "https://instagram.com/nyancrimew" "link": "https://instagram.com/nyancrimew",
"me": true
}, },
{ {
"name": "letterboxd", "name": "letterboxd",
"link": "https://letterboxd.com/nyancrimew/" "link": "https://letterboxd.com/nyancrimew/",
"me": true
}, },
{ {
"name": "soundcloud", "name": "soundcloud",
"link": "https://soundcloud.com/nyancrimew" "link": "https://soundcloud.com/nyancrimew",
"me": true
}, },
{ {
"name": "last dot federated states of micronesia", "name": "last dot federated states of micronesia",
"link": "https://last.fm/user/nyancrimew" "link": "https://last.fm/user/nyancrimew",
"me": true
}, },
{ {
"name": "github", "name": "github",
"link": "https://github.com/nyancrimew" "link": "https://github.com/nyancrimew",
"me": true
}, },
{ {
"name": "analytics", "name": "analytics",

View file

@ -2,7 +2,7 @@
<div class="footer-kitten"><img src="/img/walkingkitten_crop.png" alt="a small white kitten with black spots walking across the screen"></div> <div class="footer-kitten"><img src="/img/walkingkitten_crop.png" alt="a small white kitten with black spots walking across the screen"></div>
<div> <div>
{% for item in footer.links %} {% for item in footer.links %}
<span><a href="{{ item.link }}" rel="me" target="_blank">{{ item.name }}</a></span> <span><a href="{{ item.link }}" {% if item.me %}rel="me"{% endif %} target="_blank">{{ item.name }}</a></span>
{% if not loop.last %} {% if not loop.last %}
<span>|</span> <span>|</span>
{% endif %} {% endif %}