layout.html 807 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>{{ title }} — LoC Transliterator</title>
  5. <link rel="stylesheet"
  6. href="{{ url_for('static', filename='normalize.css') }}">
  7. <link rel="stylesheet"
  8. href="{{ url_for('static', filename='milligram.min.css') }}">
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. </head>
  11. <body>
  12. <main class="wrapper">
  13. <section class="section">
  14. <div class="container">
  15. {% block header %}
  16. <h1 class="title is-1">{{ title }}</h1>
  17. {% endblock %}
  18. <div class="content">
  19. {% block body %}{% endblock %}
  20. </div>
  21. </div>
  22. </section>
  23. </main>
  24. </body>
  25. </html>