{% extends "base.html" %}
{% block title %}Cookie Preferences{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block consent %}{% endblock %}
{% block content %}
{%- from 'consent_popup.html' import consent with context -%}
{{ consent(true) }}
{% endblock %}