123456789101112131415161718192021222324252627 |
- {{ if .Site.Params.privacy_pack }}
- {{ $scr := .Scratch }}
- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css">
- <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
- <script>
- window.addEventListener("load", function(){
- window.cookieconsent.initialise({
- "palette": {
- "popup": {
- "background": "{{ $scr.Get "primary" }}",
- "text": "{{ $scr.Get "background" }}"
- },
- "button": {
- "background": "{{ $scr.Get "background" }}",
- "text": "{{ $scr.Get "primary" }}"
- }
- },
- "theme": "classic",
- "content": {
- "message": {{ i18n "cookie_message" | default "This website uses cookies to ensure you get the best experience on our website." }},
- "dismiss": {{ i18n "cookie_dismiss" | default "Got it!" }},
- "link": {{ i18n "cookie_learn" | default "Learn more" }},
- "href": {{ with .Site.GetPage "privacy.md" }}{{ printf "%s" .RelPermalink }}{{ else }}"https://cookies.insites.com"{{ end }}
- }
- })});
- </script>
- {{ end }}
|