60 lines
2 KiB
HTML
60 lines
2 KiB
HTML
|
|
<div id="cookie-notice">
|
|
|
|
<p>
|
|
I only use cookies if you consent to it, or if you give me your nickname so I can remember you next time you come by.
|
|
<br />These cookies are all placed by my crew: Basspistol. No big tech involved.
|
|
|
|
<br />Read more about <a href="/cookies/"> how {{ site.title }} use cookies</a>
|
|
</p>
|
|
|
|
<button class="button no" id="cookie-notice-decline">
|
|
Nah
|
|
</button>
|
|
<button class="button yes" id="cookie-notice-accept">
|
|
Ok
|
|
</button>
|
|
|
|
</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();
|
|
}
|
|
document.cookie = name + "=" + value + "; domain=.{{ site.publisher.domain }}" + expires + "; path=/;SameSite=Strict";
|
|
}
|
|
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 mautic - tracker.js %}
|
|
} else {
|
|
document.getElementById('cookie-notice').style.display = 'flex';
|
|
}
|
|
if (readCookie('cookie-notice-dismissed') == 'dontWantCookies') {
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
}
|
|
document.getElementById('cookie-notice-accept').addEventListener("click", function () {
|
|
createCookie('cookie-notice-dismissed', 'wantCookies', 365);
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
});
|
|
document.getElementById('cookie-notice-decline').addEventListener("click", function () {
|
|
createCookie('cookie-notice-dismissed', 'dontWantCookies', 365);
|
|
document.getElementById('cookie-notice').style.display = 'none';
|
|
});
|
|
</script> |