{% set current_page='following' %} {% extends 'federation/master.html' %} {# SPDX-FileCopyrightText: 2020-2021 zPlus SPDX-License-Identifier: GPL-2.0-only #} {% block page_content %} {% if following|length == 0 %} You are not following anyone. Search an actor {% endif %}
{% for actor in following %}
{% include 'federation/actor.html' %}
{% endfor %}
{% endblock %}