Skip to content

Instantly share code, notes, and snippets.

@JonasEriksson
Created March 11, 2017 11:32
Show Gist options
  • Save JonasEriksson/07e9512945bd7e3d0c5518f427e387aa to your computer and use it in GitHub Desktop.
Save JonasEriksson/07e9512945bd7e3d0c5518f427e387aa to your computer and use it in GitHub Desktop.
CookieConsent Snippet german language
<link rel="stylesheet" type="text/css" 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": "##edeff5",
"text": "##838391"
},
"button": {
"background": "##00669b"
}
},
"theme": "classic",
"content": {
"message": "Diese Internetseite benutzt sog. Cookies (kleine Textdateien) für die korrekte Darstellung von Inhalten. ",
"dismiss": "OK, einverstanden!",
"link": "Informationen zu Cookies",
"href": "https://www. internetseite hier einfuegen .de/cookieinformation"
}
})});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment