Welcome to mirror list, hosted at ThFree Co, Russian Federation.

google-tag-manager-noscript.html « partials « layouts - github.com/zerostaticthemes/hugo-serif-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0292e6ed4709e5b482de3e644040ffb6ce47b273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- if .Site.IsServer -}}
<!-- Dont add Google Tag Manager to localhost -->
{{ else }}
{{ $gid := (getenv "HUGO_GTM_ID") }}
{{ if $gid }}
<!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{- $gid -}}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) -->
{{ else }}
{{ if .Site.Params.google_tag_manager_id }}
<!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{- .Site.Params.google_tag_manager_id -}}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) -->
{{ end }}
{{ end }}
{{ end }}