{% extends cms_page_base|default:"conjunto/app_base.html" %} {% comment %} ``extends`` has to be the very first tag in the file. A comment above it is still a tag, and Django then refuses to render the template at all. Default public page template. The renderer itself is theme-independent — consumers (e.g. medux-online) typically bypass this template and call {% render_blocks page %} from inside their own theme shell. The base template is overridable via the ``cms_page_base`` context variable so this default can be re-homed without editing conjunto. {% endcomment %} {% load cms %} {% block page_title %}{{ page.title }}{% endblock %} {% block content %}
{% render_blocks page %}
{% endblock %}