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.
11 lines
205 B
HTML
11 lines
205 B
HTML
{% extends "template.html" %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="content">
|
|
{% autoescape off %}
|
|
{{ content }}
|
|
{% endautoescape %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|