mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-06-04 16:53:50 -04:00
10 lines
389 B
HTML
10 lines
389 B
HTML
{{- $gaID := .Site.Params.services.googleAnalytics.id }}
|
|
{{- if and (eq .Site.Params.env "production") $gaID }}
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ $gaID }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() { dataLayer.push(arguments); }
|
|
gtag('js', new Date());
|
|
gtag('config', '{{ $gaID }}');
|
|
</script>
|
|
{{- end }}
|