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.

33 lines
1.1 KiB

7 months ago
7 months ago
7 months ago
7 months ago
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. <!-- Menu -->
  10. <div class="main-menu-dropdown">
  11. <!-- <img class="logo" src="/static/images/logo.png"> -->
  12. <span>{{ title }}</span>
  13. <input type="checkbox" id="main-menu-check">
  14. <label for="main-menu-check" class="show-menu">&#9776;</label>
  15. <div class="main-menu">
  16. <a href="/">Blog</a>
  17. <a href="/archive">Archive</a>
  18. <label for="main-menu-check" class="hide-menu">X</label>
  19. </div>
  20. </div>
  21. <!-- Menu -->
  22. <!-- Content -->
  23. {% block content %}
  24. {% endblock %}
  25. <!-- Content -->
  26. <footer>
  27. <div class="center">
  28. Dieser Blog enthält kein Javascript oder PHP.<br>
  29. Dies ist eine Instanz vom <a href="https://github.com/tiyn/beaker-blog">Beaker Blog </a>.
  30. </div>
  31. </footer>
  32. </body>
  33. </html>