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.

17 lines
450 B

  1. {% extends "template.html" %}
  2. {% block content %}
  3. <div class="container">
  4. <div class="content">
  5. <form action="{{ url_for('search') }}" method=post>
  6. {{ form.hidden_tag() }}
  7. {{ form.query_str }}
  8. {{ form.submit }}
  9. </form>
  10. <div class="content">
  11. {% autoescape off %}
  12. <span>{{ content }}</span>
  13. {% endautoescape %}
  14. </div>
  15. </div>
  16. </div>
  17. {% endblock %}