Files
fte-Homepage/themes/tella/layouts/partials/analytics.html
Fabian Ecke 7b612a8671
Some checks failed
Website / Website veröffentlichen (push) Failing after -22s
fixed hugo version problems
2026-03-25 12:58:49 +01:00

14 lines
401 B
HTML

{{ if not hugo.IsServer }}
{{ with .Site.Config.Services.GoogleAnalytics.ID }}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ . }}');
</script>
{{ end }}
{{ end }}