By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 user-profile-followers.html

View raw Download
text/html • 1.13 kiB
HTML document, ASCII text
        
            
1
{% extends "user-profile.html" %}
2
{% set active_page = "followers" %}
3
4
{% block content %}
5
<x-hbox class="wrap homogenous">
6
{% if user.followers | length %}
7
{% for follower in user.followers %}
8
<x-frame style="flex-basis: 128px; --width: 128px;">
9
<article class="card" style="flex: 0 1 auto;">
10
<section class="card-main">
11
<a href="/{{ follower.follower.username }}">
12
<img class="avatar" src="/info/{{ follower.follower.username }}/avatar" style="width: 100%;">
13
<div class="thumbnail-marquee">
14
<span class="inner-thumbnail-marquee" style="animation-play-state: paused;">{{ follower.follower.username }}</span>
15
</div>
16
</a>
17
</section>
18
</article>
19
</x-frame>
20
{% endfor %}
21
{% else %}
22
<p>{% trans %}This user hasn't got any followers.{% endtrans %}</p>
23
{% endif %}
24
</x-hbox>
25
{% endblock %}
26