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