FG42/website/theme/templates/google.html

10 lines
329 B
HTML
Raw Normal View History

2020-10-10 07:25:57 +01:00
{% if GOOGLE_ANALYTICS %}
<script defer src="https://www.googletagmanager.com/gtag/js?id={{ GOOGLE_ANALYTICS }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ GOOGLE_ANALYTICS }}');
</script>
{% endif %}