microblog.pub/templates/following.html
2018-05-18 20:41:41 +02:00

17 lines
307 B
HTML

{% extends "layout.html" %}
{% import 'utils.html' as utils %}
{% block header %}
{% endblock %}
{% block content %}
<div id="container">
{% include "header.html" %}
<div id="following">
{% for followed in following_data %}
{{ utils.display_actor(followed) }}
{% endfor %}
</div>
</div>
{% endblock %}