{% load aratinga_tags navigation_tags i18n static wagtailcore_tags wagtailimages_tags wagtailsettings_tags wagtailuserbar %} {% get_settings %} {% get_current_language as LANGUAGE_CODE %} {# Pass in CMS variables to JavaScript #} {% block title %} {% if page.seo_title %} {{ page.seo_title }} {% else %} {{ page.title }} {% endif %} {% endblock %} {% block title_suffix %} | {{SiteSettings.title_suffix}} {% endblock %} {# Force all links in the live preview panel to be opened in a new tab #} {% if request.in_preview_panel %} {% endif %} {% block aratinga_assets %} {% endblock %} {% block extra_head %}{% endblock %} {% block ada_skip %} Skip navigation {% endblock %} {% wagtailuserbar %} {% block navbar %}{% endblock %} {% block header %} {% include "aratinga/includes/header.html" %} {% endblock header %}
{% block content %} {% block messages %} {% include "aratinga/includes/messages.html" %} {% endblock messages %} {% block content_body %} {% for block in page.body %} {% include_block block with settings=settings %}
{% endfor %} {% endblock %} {% block content_post_body %}{% endblock %} {% endblock content %}

{% include "aratinga/includes/footer.html" %}