{% extends "pages/base.html" %} {% block extra_head %} {{ block.super }} {# Add your own stylesheets below before the endblock extra_head #} {% endblock extra_head %} {% comment %} {# in your default.html, be sure to wrap the the block body with custom_body like below #} {% block custom_body %} {% block content %}{{ block.super }}{% endblock content %} {% endblock custom_body %} {% endcomment %} {% block custom_body %} {# TODO: check custom_body block #}
{% if page.header_image %} {% endif %} {% if page.title %}

{% blocktrans with t=page.title %}{{ t }}{% endblocktrans %}

{% endif %}
{% blocktrans with c=page.content|safe %}{{ c }}{% endblocktrans %}
{% include "pages/meta.html" %}
{% endblock custom_body %} {% block extra_body %} {{ block.super }} {# add your javascript here. jquery will already be loaded #} {% endblock extra_body %}