cookie_consent.html 817 B

12345678910111213141516171819202122
  1. {{ if .Site.Params.privacy_pack }}
  2. <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css">
  3. <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
  4. <script>
  5. window.addEventListener("load", function(){
  6. window.cookieconsent.initialise({
  7. "palette": {
  8. "popup": {
  9. "background": "#000"
  10. },
  11. "button": {
  12. "background": "#f1d600"
  13. }
  14. },
  15. "content": {
  16. "message": {{ i18n "cookie_message" | default "This website uses cookies to ensure you get the best experience on our website." }},
  17. "dismiss": {{ i18n "cookie_dismiss" | default "Got it!" }},
  18. "link": {{ i18n "cookie_learn" | default "Learn more" }}
  19. }
  20. })});
  21. </script>
  22. {{ end }}