A blog system based on plain-files.
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.

14 lines
358 B

7 months ago
7 months ago
  1. <html>
  2. <head>
  3. <title>{{ title }}</title>
  4. <link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet" type="text/css">
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width", initial-scale=1.0>
  7. </head>
  8. <body>
  9. <!-- Content -->
  10. {% block content %}
  11. {% endblock %}
  12. <!-- Content -->
  13. </body>
  14. </html>