10 lines
428 B
HTML
10 lines
428 B
HTML
{{ if and (.Site.Params.googleAnalytics.enabled) (.Site.Params.googleAnalytics.ID) }}
|
|
<!-- Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ .Site.Params.googleAnalytics.ID }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', '{{ .Site.Params.googleAnalytics.ID }}');
|
|
</script>
|
|
{{ end }} |