{% extends "profile/base.html" %} {% block content %} {% if pinned|length != 0 %}
{{ icon "pin" }} {{ text "communities:label.pinned" }}
{% for post in pinned %} {{ components::post(post=post[0], owner=post[1], secondary=true, community=post[2], show_community=true, can_manage_post=is_self) }} {% endfor %}
{% endif %}
{{ icon "clock" }} {{ text "auth:label.recent_posts" }}
{% for post in posts %} {{ components::post(post=post[0], owner=post[1], secondary=true, community=post[2], show_community=true, can_manage_post=is_self) }} {% endfor %} {{ components::pagination(page=page, items=posts|length) }}
{% endblock %}