tetratto/crates/app/src/public/html/profile/following.html

28 lines
721 B
HTML
Raw Normal View History

{% extends "profile/base.html" %} {% block content %}
2025-03-31 22:35:11 -04:00
<div class="card-nest">
<div class="card small flex gap-2 items-center">
{{ icon "users-round" }}
<span>{{ text "auth:label.following" }}</span>
</div>
2025-05-03 11:29:31 -04:00
<div class="card flex flex-wrap gap-4 flex-collapse">
2025-03-31 22:35:11 -04:00
<!-- prettier-ignore -->
{% for item in list %}
2025-05-03 11:29:31 -04:00
{{ components::user_plate(user=item[1], secondary=true) }}
2025-04-02 14:19:37 -04:00
{% endfor %} {{ components::pagination(page=page, items=list|length) }}
2025-03-31 22:35:11 -04:00
</div>
</div>
2025-05-03 11:29:31 -04:00
<style>
.user_plate {
width: calc(50% - 0.5rem);
}
@media screen and (max-width: 900px) {
.user_plate {
width: 100%;
}
}
</style>
2025-03-31 22:35:11 -04:00
{% endblock %}