default.html 697 B

123456789101112131415161718192021222324
  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 type="text/javascript">
  11. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  12. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  13. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  14. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  15. ga('create', 'UA-57144786-2', 'auto');
  16. ga('send', 'pageview');
  17. </script>
  18. </body>
  19. </html>