{# Alternative ... framing without header and footer. #} {# Base template which does not use any request context information and is safe to use on error pages #} {% block meta %} {# Include or override default tags #} {% include "site/meta.html" %} {% endblock meta %} {% block css %} {# Include or override default CSS head #} {% include "site/css.html" %} {% endblock %} {% block custom_head %} {# A block where the template extending this base tempplate can drop in more ```` elements. #} {% endblock %} {% block body %} {# This block covers everything between ``...`` #}
{# content is the content with margins #}
{% block content %} {% endblock content %}
{# analytics is tracking JavaScript #} {% block analytics %} {% include "site/analytics.html" %} {% endblock analytics %} {% endblock body %}