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{% for followed in user.follows %} 8<x-frame style="flex-basis: 96px; --width: 96px;"> 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</x-hbox> 22</x-frame> 23{% endblock %}