{% extends "base.html" %} {% load staticfiles %} {% load compress %} {% load promotion_tags %} {% block mainstyles %} {% block styles %} {% compress css %} {% if use_less %} {% else %} {% endif %} {% endcompress %} {% endblock %} {% endblock %} {% block layout %} {# Top-horizontal bar with account, notifictions, dashboard links #} {% include "partials/nav_accounts.html" %} {# Site logo/title, mini-basket, browse dropdown and searchbox #}
{% include "partials/brand.html" %} {# Mini-basket wrapped in a block so some templates can now display it #} {% block mini_basket %}{% include "partials/mini_basket.html" %}{% endblock %}
{% block navigation %} {% include "partials/nav_primary.html" %} {% endblock %}
{# Main content of page - other layout templates may override this block #} {% block content_wrapper %}
{% block breadcrumbs %}{% endblock %} {% block header %} {% endblock %} {% include "partials/alert_messages.html" %} {% block subnavigation %}{% endblock %}
{% block subheader %}{% endblock subheader %} {# Render promotions #}
{% for promotion in promotions_page %} {% render_promotion promotion %} {% endfor %}
{# Div exists for AJAX updates to entire content section #}
{% block content %}{% endblock %}
{% endblock %} {% include "partials/footer.html" %} {% endblock %} {# Local scripts #} {% block scripts %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock %} {% block extrascripts %} {% include "partials/extrascripts.html" %} {{ block.super }} {% endblock %} {% block onbodyload %} {{ block.super }} oscar.init(); {% endblock %}