12345678910111213141516171819202122232425262728293031 |
- {% 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 %}
|