mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
tpl: Trim whitespace from google_analytics.html
This commit is contained in:
parent
37609262dc
commit
53a8de21b8
1 changed files with 7 additions and 7 deletions
|
@ -1,8 +1,8 @@
|
||||||
{{ if not site.Config.Privacy.GoogleAnalytics.Disable }}
|
{{ if not site.Config.Privacy.GoogleAnalytics.Disable }}
|
||||||
{{ with site.Config.Services.GoogleAnalytics.ID }}
|
{{- with site.Config.Services.GoogleAnalytics.ID }}
|
||||||
{{ if strings.HasPrefix (lower .) "ua-" }}
|
{{- if strings.HasPrefix (lower .) "ua-" }}
|
||||||
{{ warnf "Google Analytics 4 (GA4) replaced Google Universal Analytics (UA) effective 1 July 2023. See https://support.google.com/analytics/answer/11583528. Create a GA4 property and data stream, then replace the Google Analytics ID in your site configuration with the new value." }}
|
{{- warnf "Google Analytics 4 (GA4) replaced Google Universal Analytics (UA) effective 1 July 2023. See https://support.google.com/analytics/answer/11583528. Create a GA4 property and data stream, then replace the Google Analytics ID in your site configuration with the new value." }}
|
||||||
{{ else }}
|
{{- else }}
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
|
||||||
<script>
|
<script>
|
||||||
var doNotTrack = false;
|
var doNotTrack = false;
|
||||||
|
@ -17,6 +17,6 @@
|
||||||
gtag('config', '{{ . }}');
|
gtag('config', '{{ . }}');
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{{ end }}
|
{{- end }}
|
||||||
{{ end }}
|
{{- end }}
|
||||||
{{ end }}
|
{{- end -}}
|
||||||
|
|
Loading…
Reference in a new issue