20 lines
623 B
HTML
20 lines
623 B
HTML
<div id="cookie-banner" style="display:none" role="dialog"
|
|
aria-label="Cookie consent" aria-live="polite"
|
|
data-matomo-url="{{ .Site.Params.hugo_cookie_consent.matomo_host }}"
|
|
data-matomo-site-id="{{ .Site.Params.hugo_cookie_consent_matomo_site_id }}" >
|
|
<p>
|
|
{{ i18n "site_wants_cookie" }}
|
|
<a href="{{ .Site.Params.hugo_cookie_consent.privacy_policy_url }}">
|
|
{{ i18n "cookie_more_info" }}
|
|
</a>
|
|
</p>
|
|
<div>
|
|
<button id="cookie-accept">
|
|
{{ i18n "cookie_button_accept" }}
|
|
</button>
|
|
<button id="cookie-decline">
|
|
{{ i18n "cookie_button_decline" }}
|
|
</button>
|
|
</div>
|
|
</div>
|