{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% include 'post/_post_full.html' %}

Back to main discussion

{% for reply in replies %} {% with post_reply=reply['comment'], children=reply['replies'] %} {% include 'post/_post_reply_teaser.html' %} {% endwith %} {% endfor %}
{% with community = post.community -%} {% include "_side_pane.html" %} {% endwith -%}
{% endblock %}