Files
fnx_web/res/template/fragments/analytics.html

12 lines
372 B
HTML
Raw Normal View History

2017-11-10 12:39:55 +01:00
{{define "analytics"}}{{if not debugMode}}
2017-11-14 22:18:22 +01:00
<!-- Global site tag (gtag.js) - Google Analytics -->
2019-02-13 21:35:21 +01:00
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-24463738-4"></script>
2017-11-10 12:39:55 +01:00
<script>
2017-11-14 22:18:22 +01:00
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
2017-11-10 12:39:55 +01:00
2019-02-13 21:35:21 +01:00
gtag('config', 'UA-24463738-4');
2017-11-10 12:39:55 +01:00
</script>
2019-02-13 21:35:21 +01:00
{{end}}{{end}}