forked from Signbank/FinSL-signbank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicyconsent.html
27 lines (27 loc) · 1.16 KB
/
policyconsent.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% load i18n %}
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/cookieconsent.min.css' %}" />
<script src="{% static 'js/cookieconsent.min.js' %}"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#383b75"
},
"button": {
"background": "#f1d600"
}
},
"theme": "classic",
"content": {
{% comment %}Translators: Privacy policy consent text.{% endcomment %}
"message": "{% blocktrans context 'consent' %}This site tracks you for analytics purposes, and uses cookies to ensure you get the best experience on our website. By using the site you agree to this, to our Privacy Policy, and to our Terms of Service.{% endblocktrans %}",
{% comment %}Translators: Privacy policy consent: I understand button.{% endcomment %}
"dismiss": "{% blocktrans context 'consent' %}Got it!{% endblocktrans %}",
{% comment %}Translators: Privacy policy consent: Privacy policy link name.{% endcomment %}
"link": "{% blocktrans context 'consent' %}Learn more{% endblocktrans %}",
"href": "/about/privacy-policy/"
}
})});
</script>