{% 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 %}
Original post

{{ post.title }}

{{ post.body_html | safe if post.body_html else '' }}
Comment you are replying to {{ comment.body_html | safe}}
{% if post.community.ap_id and '@beehaw.org' in post.community.ap_id %}

{{ _('This post is hosted on beehaw.org which has higher standards of behaviour than most places. Be nice.') }}

{% endif %} {{ render_form(form) }} {% if not low_bandwidth %} {% if markdown_editor %} {% else %} {% endif %} {% endif %}
{% endblock %}