microblog.pub/templates/following.html
2018-06-27 23:27:48 +02:00

20 lines
428 B
HTML

{% extends "layout.html" %}
{% import 'utils.html' as utils %}
{% block title %}Following - {{ config.NAME }}{% endblock %}
{% block header %}
{% endblock %}
{% block content %}
<div id="container">
{% include "header.html" %}
<div id="following">
{% for followed in following_data %}
<div style="height: 100px;">
{{ utils.display_actor_inline(followed, size=80) }}
</div>
{% endfor %}
</div>
</div>
{% endblock %}