mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
710142016b
See #4616
14 lines
No EOL
425 B
HTML
Executable file
14 lines
No EOL
425 B
HTML
Executable file
{{- $pc := .Site.PrivacyConfig.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');
|
|
}
|
|
</script>
|
|
<script async src='//www.google-analytics.com/analytics.js'></script>
|
|
{{ end }}
|
|
{{- end -}} |