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

11 lines
371 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 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-24463738-5"></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
2017-11-14 22:18:22 +01:00
gtag('config', 'UA-24463738-5');
2017-11-10 12:39:55 +01:00
</script>
{{end}}{{end}}