mirror of
https://github.com/tiyn/amphora-wiki.git
synced 2026-02-22 04:44:48 +01:00
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.
18 lines
437 B
HTML
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 %}
|