user-profile-follows.html
HTML document, ASCII text
1{% extends "user-profile.html" %} 2{% set active_page = "following" %} 3 4{% block content %} 5<x-frame style="--width: 768px;"> 6<x-hbox class="wrap homogenous"> 7{% if user.follows | length %} 8{% for followed in user.follows %} 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="/{{ followed.followed.username }}"> 13<img class="avatar" src="/info/{{ followed.followed.username }}/avatar" style="width: 100%;"> 14<div class="thumbnail-marquee"> 15<span class="inner-thumbnail-marquee" style="animation-play-state: paused;">{{ followed.followed.username }}</span> 16</div> 17</a> 18</section> 19</article> 20</x-frame> 21{% endfor %} 22{% else %} 23<p>{% trans %}This user isn't following anyone yet.{% endtrans %}</p> 24{% endif %} 25</x-hbox> 26</x-frame> 27{% endblock %} 28