{% extends "layout.html" %}
{% load staticfiles %}
{% block extrahead %}
{% if cookie_jar.settings.google_tag_manager and cookie_jar.functional.is_allowed%}
{% endif %}
{% if cookie_jar.settings.google_analytics and cookie_jar.functional.is_allowed %}
{% endif %}
{{ 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 %}