{# Base template which does not use any request context information and is safe to use on error pages #} {% block meta %} {% include "site/meta.html" %} {% endblock meta %} {% block css %} {% include "site/css.html" %} {% endblock %} {# body_classes allows to insert extra CSS classes on tag #} {# body block contains the whole page without a navigation frame and the analytics script #} {% block body %} {% endblock body %}
{# content is the content with margins #}
{% block content %} {% endblock content %}
{# analytics is tracking JavaScript #} {% block analytics %} {% include "site/analytics.html" %} {% endblock analytics %}