24 lines
842 B
HTML
24 lines
842 B
HTML
{{ $id := .Site.Params.trackingID }}
|
|
|
|
{{ if eq .Site.Params.trackingCodeType "gtag" }}
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ $id }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '{{ $id }}');
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ if eq .Site.Params.trackingCodeType "analytics" }}
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
|
ga('create', '{{ $id }}', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
|
<!-- End Google Analytics -->
|
|
{{ end }} |