1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-02-24 16:07:40 +01:00
microblog.pub/app/templates/following.html
2022-06-22 20:11:22 +02:00

13 lines
289 B
HTML

{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block content %}
{% include "header.html" %}
<div id="following">
<ul>
{% for follow in following %}
<li>{{ utils.display_actor(follow.actor, actors_metadata) }}</li>
{% endfor %}
</ul>
</div>
{% endblock %}