summaryrefslogtreecommitdiffstats
path: root/tpl/tplimpl/embedded/templates/google_analytics_async.html
blob: 18e18a16897544d581664a9921e4795a2ee06ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $pc := .Site.Config.Privacy.GoogleAnalytics -}}
{{- if not $pc.Disable -}}
{{ with .Site.GoogleAnalytics }}
<script>
{{ template "__ga_js_set_doNotTrack" $ }}
if (!doNotTrack) {
	window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
	ga('create', '{{ . }}', 'auto');
	ga('send', 'pageview');
	{{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
}
</script>
<script async src='//www.google-analytics.com/analytics.js'></script>
{{ end }}
{{- end -}}