mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
13 lines
390 B
HTML
13 lines
390 B
HTML
|
|
<!-- _templates/analytics.html -->
|
||
|
|
{% if google_analytics_id %}
|
||
|
|
<!-- Google tag (gtag.js) -->
|
||
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ google_analytics_id }}"></script>
|
||
|
|
<script>
|
||
|
|
window.dataLayer = window.dataLayer || [];
|
||
|
|
function gtag(){dataLayer.push(arguments);}
|
||
|
|
gtag('js', new Date());
|
||
|
|
|
||
|
|
gtag('config', '{{ google_analytics_id }}');
|
||
|
|
</script>
|
||
|
|
{% endif %}
|