bridgy-fed/templates/following.html

26 wiersze
788 B
HTML

{% extends "profile.html" %}
{% set subtab = "following" %}
{% block subsubtabs %}
{% if user.LABEL != 'activitypub' %}
<div class="row">
<form method="post" action="/follow/start">
<p>
<label for="follower-address">Follow someone (requires <a href="https://indieauth.net/">IndieAuth</a>):</label>
<input id="follower-address" name="address" type="text" required
placeholder="@user@domain.social" alt="fediverse address"
value="{{ address or '' }}"></input>
<input name="me" type="hidden" value="{{ user.web_url() }}"></input>
<button type="submit" class="btn btn-default">Follow</button>
</p>
</form>
</div>
{% endif %}
{% endblock subsubtabs %}
{% block feed %}
{% with page_name="following" %}
{% include "_followers.html" %}
{% endwith %}
{% endblock %}