krata/_includes/google-analytics.html

15 lines
454 B
HTML
Raw Permalink Normal View History

2019-09-30 14:38:41 +02:00
<!--
The GA snippet
-->
<!-- Global site tag (gtag.js) - Google Analytics -->
2020-12-10 16:57:00 +01:00
<script defer src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics.id }}"></script>
2019-09-30 14:38:41 +02:00
<script>
2020-12-10 16:57:00 +01:00
document.addEventListener("DOMContentLoaded", function(event) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ site.google_analytics.id }}');
});
2019-09-30 14:38:41 +02:00
</script>