{% extends 'base' %} {% block title %}Post detail{% endblock %} {% block content %} {% if post.title %}

{{ post.title }}

{% endif %}

{{ post.created }}

{% if post.modified < post.created %}

{{ post.modified }}

{% endif %}
{% autoescape off %} {{ post.body_display }} {% endautoescape %}
{% endblock %}