aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/head.html
diff options
context:
space:
mode:
authorFrank Blechschmidt <contact@frank-blechschmidt.com>2023-05-22 15:58:05 -0700
committerFrank Blechschmidt <contact@frank-blechschmidt.com>2023-05-22 16:03:20 -0700
commitd8bc79ad2dfb4d70bfe64fa2f349398073b1b0a2 (patch)
tree342032a176d9f0d88e11012b433e93e7f4c14af6 /layouts/partials/head.html
parentbbc9b60f3ac541d1661f7447e1568d76c419d4f9 (diff)
Add support for cookie consent and with GA4
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r--layouts/partials/head.html22
1 files changed, 10 insertions, 12 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index f01e36b..f658d68 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -10,23 +10,21 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
-
- {{ $style := resources.Get "sass/researcher.scss" | resources.ExecuteAsTemplate "sass/researcher.scss" . | toCSS | minify }}
+ {{ $style := resources.Get "sass/researcher.scss" | resources.ExecuteAsTemplate "sass/researcher.scss" . | toCSS | minify -}}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
-
- {{ with .Site.Params.favicon }}
- <link rel="icon" type="image/ico" href="{{ . | absURL }}">
- {{ end }}
+ {{ with .Site.Params.favicon -}}
+ <link rel="icon" type="image/ico" href="{{ . | absURL }}">
+ {{ end -}}
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
- {{ if not .Site.IsServer }}
- {{ template "_internal/google_analytics.html" . }}
- {{ end }}
+ {{- if not .Site.IsServer -}}
+ {{- partial "googleanalytics.html" . -}}
+ {{- end -}}
- {{ if .Params.noindex }}
- <meta name="robots" content="noindex">
- {{ end }}
+ {{ if .Params.noindex -}}
+ <meta name="robots" content="noindex">
+ {{ end -}}
</head>