25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
|
{{ if and (isset .Site.Params "matomo") (eq .Site.Params.matomo.enable true) }}
|
||
|
<script type="text/javascript">
|
||
|
window.addEventListener("load", function() {
|
||
|
t=Matomo.getTracker("{{- .Site.Params.matomo.url -}}", "{{- .Site.Params.matomo.id -}}");
|
||
|
when = t.getRememberedCookieConsent();
|
||
|
|
||
|
banner = document.getElementsByClassName("cookie-banner")[0];
|
||
|
if (when == 0) {
|
||
|
banner.style.display = 'block';
|
||
|
}
|
||
|
}, false);
|
||
|
|
||
|
function dismissPopup() {
|
||
|
t=Matomo.getTracker("{{- .Site.Params.matomo.url -}}", "{{- .Site.Params.matomo.id -}}");
|
||
|
t.rememberCookieConsentGiven()
|
||
|
banner = document.getElementsByClassName("cookie-banner")[0];
|
||
|
banner.style.display = 'none';
|
||
|
}
|
||
|
</script>
|
||
|
<div class="cookie-banner" style="display:none">
|
||
|
<p>{{ i18n "popupMsg" }}<a href="{{- .Site.Params.matomo.policyurl -}}"> <u>{{ i18n "cookiePolicy" }}</u></a>.</p>
|
||
|
<a style="font-size: 12px;" href="javascript:dismissPopup()">({{ i18n "dismissPopup" }})</a>
|
||
|
</div>
|
||
|
{{ end }}
|