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

19 lines
616 B
HTML
Raw Normal View History

{% import "macros.html" as macros %} {% extends "profile/base.html" %} {% block
2025-04-06 13:43:12 -04:00
content %}
<div class="card-nest">
<div class="card small flex gap-2 items-center">
{{ icon "clock" }}
<span>{{ text "auth:label.recent_posts" }}</span>
</div>
<div class="card flex flex-col gap-4">
<!-- prettier-ignore -->
{% for post in posts %}
{{ components::post(post=post[0], owner=post[1], secondary=true, community=post[2], show_community=true) }}
{% endfor %}
{{ components::pagination(page=page, items=posts|length) }}
</div>
</div>
{% endblock %}