{% extends "oscar/layout.html" %}
{% load staticfiles %}
{% block extrahead %}
{{ block.super }}
{# only include cookie approval assets if approval is required #}
{% if cookie_jar.needs_approval %}
{% endif %}
{# always render all the active plugin templates #}
{% for header_snippet in cookie_jar.activated_snippet_header_templates %}
{% include header_snippet %}
{% endfor %}
{% endblock %}
{% block extrascripts %}
{{ block.super }}
{# only include cookie approval assets if approval is required #}
{% if cookie_jar.needs_approval %}
{% endif %}
{% endblock %}
{% block cdn_scripts %}
{{ block.super }}
{% block cookiejar_ecommerce %}{% endblock %}
{% block cookiejar %}
{% for footer_snippet in cookie_jar.activated_snippet_footer_templates %}
{% include footer_snippet %}
{% endfor %}
{% include 'cookie_jar/cookie_banner.html' %}
{% endblock %}
{% endblock %}