1
0
mirror of https://github.com/tiyn/amphora-wiki.git synced 2026-02-22 04:44:48 +01:00
Files
amphora-wiki/src/templates/search.html
TiynGER 5a9ed40251 Namespaces: added feature to show folder structure
Namespaces are an important feature to have a hierarchic structure for the wiki.
A new site was added that can display and navigate the folder structure.
2020-10-24 17:38:40 +02:00

18 lines
437 B
HTML

{% extends "template.html" %}
{% block content %}
<div class="container">
<div class="content">
<form action="{{ url_for('search') }}" method=post>
{{ form.hidden_tag() }}
{{ form.query_str }}
{{ form.submit }}
</form>
<div class="content">
{% autoescape off %}
{{ content }}
{% endautoescape %}
</div>
</div>
</div>
{% endblock %}