kemono2/client/src/pages/updated.html
2024-07-04 22:08:17 +02:00

29 lines
865 B
HTML

{% extends 'components/shell.html' %}
{% from 'components/card_list.html' import card_list %}
{% from 'components/cards/user.html' import user_card, user_card_header %}
{% block content %}
<div class="site-section site-section--updated page" id="page">
{% if results|length %}
<div class="paginator" id="paginator-top">
{% include 'components/paginator.html' %}
</div>
{% endif %}
{% call card_list('phone') %}
{% for user in results %}
{{ user_card(user, is_date=true) }}
{% else %}
<p class="no-posts subtitle">
No {{ g.artists_or_creators|lower }} found.
</p>
{% endfor %}
{% endcall %}
{% if results|length %}
<div class="paginator" id="paginator-bottom">
{% include 'components/paginator.html' %}
</div>
{% endif %}
</div>
{% endblock %}