home.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!doctype html>
  2. <html>
  3. <head>
  4. {% include head.html %}
  5. <style type="text/css">
  6. .navbar, .jumbotron { margin-bottom: 0; }
  7. .jumbotron-side { padding-top: 2em; }
  8. .notice-previous { background-color: #d9edf7; border-top: 1px solid #bce8f1; border-bottom: 1px solid #bce8f1; color: #31708f; padding: 0.5em; margin-bottom: 1em; text-align: center; }
  9. .notice-previous a { font-weight: bold; }
  10. </style>
  11. </head>
  12. <body>
  13. {% include navigation.html %}
  14. {{ content }}
  15. {% include footer.html %}
  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>