17 lines
432 B
HTML
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 %} |