You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1021 B
HTML
32 lines
1021 B
HTML
2 years ago
|
{% extends "!layout.html" %}
|
||
|
|
||
|
{%- block extrahead %}
|
||
|
{{ super() }}
|
||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-78811084-3"></script>
|
||
|
<script>
|
||
|
window.dataLayer = window.dataLayer || [];
|
||
|
function gtag(){dataLayer.push(arguments);}
|
||
|
gtag('js', new Date());
|
||
|
|
||
|
gtag('config', 'UA-78811084-3', { 'anonymize_ip': true });
|
||
|
</script>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block footer %}
|
||
|
{{ super() }}
|
||
|
<div class="footer">This page uses <a href="https://analytics.google.com/">
|
||
|
Google Analytics</a> to collect statistics. You can disable it by blocking
|
||
|
the JavaScript coming from www.google-analytics.com.
|
||
|
<script type="text/javascript">
|
||
|
(function() {
|
||
|
var ga = document.createElement('script');
|
||
|
ga.src = ('https:' == document.location.protocol ?
|
||
|
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||
|
ga.setAttribute('async', 'true');
|
||
|
document.documentElement.firstChild.appendChild(ga);
|
||
|
})();
|
||
|
</script>
|
||
|
</div>
|
||
|
{% endblock %}
|