Initial commit

This commit is contained in:
2018-03-31 18:26:40 +02:00
commit 94f0009144
54 changed files with 9069 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% set page_title = page.title %}
{% block content %}
{% if page.content %}
{{ page.content|markdown }}
{% endif %}
{% if page.subpages %}
<hr>
<ul>
{% for sub in page.subpages %}
<li><a href="{{ url_for('flatpages.show', slug=sub.slug) }}">{{ sub.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}