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.

33 lines
1.0 KiB

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="/">Startpage</a>
  17. <a href="/namespace">Namespaces</a>
  18. <a href="/search">Search</a>
  19. <label for="main-menu-check" class="hide-menu">X</label>
  20. </div>
  21. </div>
  22. <!-- Menu -->
  23. <!-- Content -->
  24. {% block content %}
  25. {% endblock %}
  26. <!-- Content -->
  27. <footer>
  28. <div class="center">
  29. Made with <a href="https://github.com/tiyn/tiyny-wiki">Amphora Wiki</a>.
  30. </div>
  31. </footer>
  32. </body>
  33. </html>