user-profile-follows.html
HTML document, ASCII text
1{% extends "user-profile.html" %} 2{% block content %} 3<x-frame style="--width: 768px;"> 4<x-hbox class="wrap homogenous"> 5{% for followed in user.follows %} 6<x-frame style="flex-basis: 96px; --width: 96px;"> 7<article class="card" style="flex: 0 1 auto;"> 8<section class="card-main"> 9<a href="/{{ followed.follower.username }}"> 10<img class="avatar" src="/info/{{ followed.follower.username }}/avatar" style="width: 100%;"> 11<div class="thumbnail-marquee"> 12<span class="inner-thumbnail-marquee" style="animation-play-state: paused;">{{ followed.follower.username }}</span> 13</div> 14</a> 15</section> 16</article> 17</x-frame> 18{% endfor %} 19</x-hbox> 20</x-frame> 21{% endblock %}