Simple file-based wiki with fulltext-search.
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.

32 lines
1.0 KiB

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="/">Startpage</a>
  17. <label for="main-menu-check" class="hide-menu">X</label>
  18. </div>
  19. </div>
  20. <!-- Menu -->
  21. <!-- Content -->
  22. {% block content %}
  23. {% endblock %}
  24. <!-- Content -->
  25. <footer>
  26. <div class="center">
  27. Dieser Blog enthält kein Javascript oder PHP.<br>
  28. Dies ist eine Instanz vom <a href="https://github.com/tiyn/tiyny-wiki">Tiyny-Wiki</a>.
  29. </div>
  30. </footer>
  31. </body>
  32. </html>