{% extends "layout.html" %} {% load promotion_tags %} {% comment %} Keep the same header and footer as the standard layout template but override the main content area to split it into a sidebar and a content block {% endcomment %} {% block content_wrapper %}
{% block breadcrumbs %}{% endblock %}
{% block header %} {% endblock %} {% include "partials/alert_messages.html" %}
{% for promotion in promotions_page %} {% render_promotion promotion %} {% endfor %}
{% block content %}{% endblock %}
{% endblock %}