{% extends "base.html" %} {% load i18n cms_tags menu_tags placeholder_tags get_placeholder_tag %} {% block content %} {% get_placeholder article.top as top %} {% get_placeholder article.bottom as bottom %} {% get_placeholder article.meta as meta %} {% get_placeholder article.media as media %} {% if top %}
{{ top }}
{% endif %}

{{ article.title }}

{% if meta %}
{{ meta }}
{% endif %} {{ article.body|safe|linebreaks }} {% if media %}
{{ media }}
{% endif %}
{% if bottom %}
{{ bottom }}
{% endif %} {% endblock %}