2025-03-25 23:58:27 -04:00
|
|
|
{% import "macros.html" as macros %} {% extends "profile/base.html" %} {% block
|
2025-03-29 00:26:56 -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 %}
|
2025-04-01 16:12:13 -04:00
|
|
|
|
|
|
|
{{ components::pagination(page=page, items=posts|length) }}
|
2025-03-29 00:26:56 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|