{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
Original post

{{ post.title }}

{{ post.body_html | safe }}
{% if comment %}
Comment you are replying to {{ comment.body_html | safe}}
{% endif %}
{{ render_form(form) }} {% if markdown_editor %} {% endif %}
{% endblock %}