15 lines
393 B
HTML
15 lines
393 B
HTML
|
{% extends "!layout.html" %}
|
||
|
|
||
|
{% block footer %}
|
||
|
{{ super() }}
|
||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-55120145-3"></script>
|
||
|
<script>
|
||
|
window.dataLayer = window.dataLayer || [];
|
||
|
function gtag(){dataLayer.push(arguments);}
|
||
|
gtag('js', new Date());
|
||
|
|
||
|
gtag('config', 'UA-55120145-3');
|
||
|
</script>
|
||
|
{% endblock %}
|