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