2020-07-09 10:15:00 +02:00
|
|
|
<div id="cookie-notice">
|
2020-09-08 18:07:38 +02:00
|
|
|
|
2020-09-10 17:19:53 +02:00
|
|
|
<p>
|
2021-08-03 14:04:29 +02:00
|
|
|
We only use cookies if you consent to it, or if you fill out one of our forms so we can remember you next time you come by.
|
|
|
|
<br />These cookies are all placed by us. No big tech involved.
|
|
|
|
|
2020-09-10 17:19:53 +02:00
|
|
|
<br />Read more about <a href="/cookies/"> how {{ site.title }} use cookies</a>
|
2020-09-08 18:07:38 +02:00
|
|
|
</p>
|
2021-08-03 14:04:29 +02:00
|
|
|
|
|
|
|
<button class="button no" id="cookie-notice-decline">
|
|
|
|
Nah
|
|
|
|
</button>
|
|
|
|
<button class="button yes" id="cookie-notice-accept">
|
|
|
|
Ok
|
|
|
|
</button>
|
2020-09-08 18:07:38 +02:00
|
|
|
|
2020-07-09 10:15:00 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function createCookie(name, value, days) {
|
|
|
|
var expires = "";
|
|
|
|
if (days) {
|
|
|
|
var date = new Date();
|
|
|
|
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
|
|
|
|
expires = "; expires=" + date.toUTCString();
|
|
|
|
}
|
2020-11-24 19:42:39 +01:00
|
|
|
document.cookie = name + "=" + value + "; domain=.{{ site.publisher.domain }}" + expires + "; path=/;SameSite=Strict";
|
2020-07-09 10:15:00 +02:00
|
|
|
}
|
|
|
|
function readCookie(name) {
|
|
|
|
var nameEQ = name + "=";
|
|
|
|
var ca = document.cookie.split(';');
|
|
|
|
for (var i = 0; i < ca.length; i++) {
|
|
|
|
var c = ca[i];
|
|
|
|
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
|
|
|
|
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
function eraseCookie(name) {
|
|
|
|
createCookie(name, "", -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (readCookie('cookie-notice-dismissed') == 'wantCookies') {
|
|
|
|
{% include analytics.js %}
|
2021-08-03 14:04:29 +02:00
|
|
|
{% include mautic-tracker.js %}
|
2020-07-09 10:15:00 +02:00
|
|
|
} else {
|
|
|
|
document.getElementById('cookie-notice').style.display = 'flex';
|
|
|
|
|
|
|
|
{% include matomo.js %}
|
|
|
|
|
|
|
|
}
|
|
|
|
if (readCookie('cookie-notice-dismissed') == 'dontWantCookies') {
|
|
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
|
|
|
|
|
|
{% include matomo.js %}
|
|
|
|
}
|
|
|
|
document.getElementById('cookie-notice-accept').addEventListener("click", function () {
|
2020-11-24 19:58:25 +01:00
|
|
|
createCookie('cookie-notice-dismissed', 'wantCookies', 365);
|
2020-07-09 10:15:00 +02:00
|
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
|
|
_paq.push(['trackEvent', 'Consent', 'wantCookie']);
|
2020-11-24 19:27:21 +01:00
|
|
|
|
2020-07-09 10:15:00 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
document.getElementById('cookie-notice-decline').addEventListener("click", function () {
|
2020-11-24 19:58:25 +01:00
|
|
|
createCookie('cookie-notice-dismissed', 'dontWantCookies', 365);
|
2020-07-09 10:15:00 +02:00
|
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
|
|
_paq.push(['trackEvent', 'Consent', 'dontWantCookie']);
|
2020-11-24 19:27:21 +01:00
|
|
|
|
2020-07-09 10:15:00 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// document.getElementById('cookie-notice-gimme').addEventListener("click", function () {
|
|
|
|
// createCookie('cookie-notice-dismissed', 'wantCookies', 31);
|
|
|
|
// document.getElementById('cookie-notice').style.display = 'none';
|
2020-11-24 19:27:21 +01:00
|
|
|
//
|
2020-07-09 10:15:00 +02:00
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|