{% load i18n static %} {% comment %} Very basic template with header(which contains logo, menus for anonymous user), footer and white background with one column in middle. It is used for pages like terms and conditions, privacy statements, contact form. {% endcomment %} {% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %} {% block title %}{% endblock %} {% if LANGUAGE_BIDI %}{% endif %} {% block extrahead %}{% endblock %} {% block responsive %} {% if LANGUAGE_BIDI %}{% endif %} {% endblock %} {% block blockbots %}{% endblock %}
{% block messages %} {% if messages %} {% endif %} {% endblock messages %}
{% block pretitle %}{% endblock %} {% block content_title %}{% if title %}

{{ title }}

{% endif %}{% endblock %} {% block content %} {{ content }} {% endblock %}
{% block footer %}{% endblock %}
{% include "boss/_footer.html" %}