1{% extends "!layout.html" %}
2
3{%- block extrahead %}
4{{ super() }}
5<!-- Global site tag (gtag.js) - Google Analytics -->
6<script async src="https://www.googletagmanager.com/gtag/js?id=UA-78811084-3"></script>
7<script>
8  window.dataLayer = window.dataLayer || [];
9  function gtag(){dataLayer.push(arguments);}
10  gtag('js', new Date());
11
12	gtag('config', 'UA-78811084-3', { 'anonymize_ip': true });
13</script>
14{% endblock %}
15
16{% block footer %}
17{{ super() }}
18<div class="footer">This page uses <a href="https://analytics.google.com/">
19Google Analytics</a> to collect statistics. You can disable it by blocking
20the JavaScript coming from www.google-analytics.com.
21<script type="text/javascript">
22  (function() {
23    var ga = document.createElement('script');
24    ga.src = ('https:' == document.location.protocol ?
25              'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
26    ga.setAttribute('async', 'true');
27    document.documentElement.firstChild.appendChild(ga);
28  })();
29</script>
30</div>
31{% endblock %}
32