mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
a51945ea4b
The current full set of options for GA is now: ```toml [privacy] [privacy.googleAnalytics] disable = false respectDoNotTrack = true anonymizeIP = true useSessionStorage = true ``` Fixes #4775
28 lines
No EOL
868 B
HTML
Executable file
28 lines
No EOL
868 B
HTML
Executable file
{{- $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;
|
|
{{- if $pc.UseSessionStorage }}
|
|
if (window.sessionStorage) {
|
|
var GA_SESSION_STORAGE_KEY = 'ga:clientId';
|
|
ga('create', '{{ . }}', {
|
|
'storage': 'none',
|
|
'clientId': sessionStorage.getItem(GA_SESSION_STORAGE_KEY)
|
|
});
|
|
ga(function(tracker) {
|
|
sessionStorage.setItem(GA_SESSION_STORAGE_KEY, tracker.get('clientId'));
|
|
});
|
|
}
|
|
{{ else }}
|
|
ga('create', '{{ . }}', 'auto');
|
|
{{ end -}}
|
|
ga('send', 'pageview');
|
|
{{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
|
|
}
|
|
</script>
|
|
<script async src='//www.google-analytics.com/analytics.js'></script>
|
|
{{ end }}
|
|
{{- end -}} |