Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
add back rel=me
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAwesome98-Real committed Dec 21, 2023
1 parent 079fa15 commit fdff761
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/_data/profiles.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
"alt": "iOS 6-style Fediverse icon",
"src_small": "possumcity",
"alt_small": "Possum City logo",
"title": "Fediverse (Possum City)"
"title": "Fediverse (Possum City)",
"is_rel_me": true
},
{
"href": "https://fedi.meows.gay/@tauon",
"src": "fedi",
"alt": "iOS 6-style Fediverse icon",
"src_small": "gaycatfedi",
"alt_small": "gay cat fedi :3 logo",
"title": "Fediverse (gay cat fedi :3)"
"title": "Fediverse (gay cat fedi :3)",
"is_rel_me": true
},
{
"href": "https://tauon07.tumblr.com/",
Expand Down
5 changes: 4 additions & 1 deletion src/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ document.currentScript.parentElement.innerHTML = `<abbr title="${age} to be exac
<h3>{{ section.title }}</h3>
{% for profile in section.profiles %}
<div class="list-item">
<a target="_blank" href="{{ profile.href }}"
<a
target="_blank"
href="{{ profile.href }}" {% if profile.is_rel_me %}
rel="me" {% endif %}
><img
alt="{{ profile.alt }}"
src="/images/icons/{{ profile.src }}.png"
Expand Down

0 comments on commit fdff761

Please sign in to comment.