{% import "macros.html" as macros %} {% extends "profile/base.html" %} {% block content %} {% if config.town_square and is_self %}
{{ icon "pencil" }} {{ text "communities:label.create_post" }}
Posts created here go to the town square community!
{% 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) }} {% endfor %} {{ components::pagination(page=page, items=posts|length) }}
{% endblock %}