17 lines
563 B
HTML
17 lines
563 B
HTML
<script async src="https://www.googletagmanager.com/gtag/js?id={{ __SELF__.trackingId }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
{% if __SELF__.domainName %}
|
|
gtag('set', { 'cookie_domain': '{{ __SELF__.domainName }}' });
|
|
{% endif %}
|
|
{% if __SELF__.forceSSL %}
|
|
gtag('set', { 'force_ssl': true });
|
|
{% endif %}
|
|
{% if __SELF__.anonymizeIp %}
|
|
gtag('set', { 'anonymize_ip': true });
|
|
{% endif %}
|
|
gtag('config', '{{ __SELF__.trackingId }}');
|
|
</script>
|