home.html 633 B

12345678910111213141516171819202122
  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. {% include ga.html %}
  17. </body>
  18. </html>