{# Fediverse Follow Me Widget — uses the fediverseInteract Alpine.js component #} {# Requires fediverse-interact.js loaded in base.njk (already present) #} {# Determines actor URI from site social links: prefers self-hosted AP, falls back to Mastodon #} {% set actorUrl = "" %} {% for link in site.social %} {% if link.icon == "activitypub" and not actorUrl %} {% set actorUrl = link.url %} {% endif %} {% endfor %} {% if not actorUrl %} {% for link in site.social %} {% if link.icon == "mastodon" and not actorUrl %} {% set actorUrl = link.url %} {% endif %} {% endfor %} {% endif %} {% if actorUrl %}

Follow Me

Follow me from your fediverse instance.

Follow on the Fediverse {% set modalTitle = "Follow on the Fediverse" %} {% set modalDescription = "Choose your instance to follow this account." %} {% include "components/fediverse-modal.njk" %}
{% endif %}