user-search.html
HTML document, ASCII text
1{% extends "default.html" %} 2 3{% block title %} 4{% trans query=query %}User listing: {{ query }}{% endtrans %} 5{% endblock %} 6{% block content %} 7<x-vbox> 8<x-frame style="--width: 896px;" class="flexible-space"> 9<ul style="list-style: none;" class="noindent"> 10{% for result in results %} 11<li> 12<article class="card" style="flex: 0 1 auto;"> 13<section class="card-main"> 14<a href="{{ result.username }}"><h3>{{ result.username }}</h3></a> 15{% if result.bio %} 16<p>{{ result.bio }}</p> 17{% endif %} 18</section> 19</article> 20</li> 21{% endfor %} 22</ul> 23{% include "pagination.html" %} 24</x-frame> 25</x-vbox> 26{% endblock %}