layout.html 1021 B

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