microblog.pub/templates/followers.html
2018-06-23 12:18:02 +02:00

20 lines
428 B
HTML

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