{% import "macros.html" as macros %} {% extends "root.html" %} {% block head %} Post - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{% if post.replying_to %} {{ icon "arrow-up" }} {{ text "communities:action.continue_thread" }} {% endif %} {{ components::post(post=post, owner=owner, community=community, show_community=true) }} {% if user %}
{{ text "communities:label.create_reply" }}
{% endif %}
{{ icon "newspaper" }} {{ text "communities:label.replies" }}
{% for post in replies %} {{ components::post(post=post[0], owner=post[1], secondary=true, show_community=false) }} {% endfor %}
{% endblock %}