Files
intern2020/templates/wiki.html
2020-12-27 19:13:18 +00:00

17 lines
432 B
HTML

{% extends "layout.html" %}
{% block content %}<br>
<a href="{{page.editlink}}"> edit </a>
Parent:
{{page.parent.path}}
<a href="{{url_for('wiki.web', path=page.parent.path)}}">Up</a>
{% for p in page.children %}
<a href="{{url_for('wiki.web', path=p.path)}}">{{p.path}}</a>
{% endfor %}
<h2>{{ page.id }}</h2>
{{page.content | safe}}
<br>
<iframe src="{{page.editlink}}" style="width:100%; height:30em"></iframe>
{% endblock %}