default.html 900 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html>
  3. <head>
  4. {% include head.html %}
  5. </head>
  6. <body>
  7. {% include navigation.html %}
  8. {{ content }}
  9. {% include footer.html %}
  10. <script>
  11. (function () {
  12. 'use strict';
  13. addAnchors('.container h1, .container h2, .container h3, .container h4, .container h5');
  14. })();
  15. </script>
  16. <script type="text/javascript">
  17. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  18. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  19. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  20. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  21. ga('create', 'UA-57144786-2', 'auto');
  22. ga('send', 'pageview');
  23. </script>
  24. </body>
  25. </html>