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