14 lines
294 B
HTML
14 lines
294 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}{{ remove_html(page[1]) }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
{% if g.user %}<p><a href="{{ url_for('manage.edit_page', pid=page[0]) }}">Edit Page</a></p>{% endif %}
|
|
|
|
{{ page[2]|safe }}
|
|
|
|
</div>
|
|
|
|
{% endblock %} |