mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-14 00:07:03 +01:00
27 lines
967 B
HTML
27 lines
967 B
HTML
<link href="{{ "css/cookieconsent.min.css" | absURL }}" rel="stylesheet" type="text/css"{{ if not .Site.Params.disable_sri }} integrity="{{ .Site.Data.sri.cookieconsentcss }}" crossorigin="anonymous"{{ end }}>
|
|
<script src="{{ "js/cookieconsent.min.js" |absURL }}"{{ if not .Site.Params.disable_sri }} integrity="{{ .Site.Data.sri.cookieconsentjs }}" crossorigin="anonymous"{{ end }} async></script>
|
|
|
|
<script>
|
|
window.addEventListener("load", function(){
|
|
window.cookieconsent.initialise({
|
|
"palette": {
|
|
"popup": {
|
|
"background": "#428bca",
|
|
"text": "#ffffff"
|
|
},
|
|
"button": {
|
|
"background": "#f71559"
|
|
}
|
|
},
|
|
"content": {
|
|
"message": '{{ i18n "cookieMessage" }}',
|
|
"dismiss": '{{ i18n "cookieDismiss" }}',
|
|
"link": '{{ i18n "cookieLink" }}',
|
|
"href": "{{ .Site.Params.cookie_consent_info_url | absURL}}"
|
|
},
|
|
"position": "bottom-right"
|
|
})});
|
|
</script>
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|