Newer
Older
{% extends "base.html" %}
{% block content %}
<div class="container" >
<h2>{{ content.content_title }}</h2>
{% if content.date is not none%}
<p>
<em>{{ content.date }}</em>
</p>
{% endif %}
{{ content.content_body }}
</div>
{% endblock %}