You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.htm 831B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"/>
  6. <title>{% block title %}storrowed.boston{% endblock %}</title>
  7. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
  8. <link rel="stylesheet" href="/static/style.css"/>
  9. {% block headerepi %}
  10. {% endblock %}
  11. </head>
  12. <body>
  13. {% block content %}
  14. <!-- Body not filled -->
  15. {% endblock %}
  16. <footer>
  17. <hr/>
  18. <div class="container mt-3 mb-3" style="color: #bbb; text-align: center;">
  19. © 2021 storrowed.boston
  20. </div>
  21. </footer>
  22. </body>
  23. </html>