{% extends "layout.html" %} {% import 'utils.html' as utils %} {% block title %}Following - {{ config.NAME }}{% endblock %} {% block header %} {% endblock %} {% block content %}
{% include "header.html" %}
{% for (follow_id, follow) in following_data %} {% if session.logged_in %}
{% endif %}
{{ utils.display_actor_inline(follow, size=80) }}
{% endfor %} {{ utils.display_pagination(older_than, newer_than) }}
{% endblock %} {% block links %} {{ utils.display_pagination_links(older_than, newer_than) }}{% endblock %}