layout.html 967 B

1234567891011121314151617181920212223242526272829
  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. <footer>
  25. <p>Scriptshifter version: tag {{ version_info[0] }} &mdash;&nbsp;
  26. commit # {{ version_info[1] }}</p>
  27. </footer>
  28. </body>
  29. </html>