mirror of
https://github.com/svemagie/indiekit-endpoint-activitypub.git
synced 2026-04-02 15:44:58 +02:00
Add OStatus subscribe template to WebFinger responses so remote servers (WordPress AP, Misskey, etc.) can discover and redirect users to complete follow interactions. Unauthenticated users are sent to login first, then redirected to the existing reader profile page with follow/unfollow UI.
11 lines
245 B
Plaintext
11 lines
245 B
Plaintext
{% extends "document.njk" %}
|
|
|
|
{% from "prose/macro.njk" import prose with context %}
|
|
|
|
{% block content %}
|
|
{% if error %}
|
|
{{ prose({ text: error }) }}
|
|
{% endif %}
|
|
<p><a href="{{ mountPath }}/">Return to dashboard</a></p>
|
|
{% endblock %}
|