polyblog/templates/staticpages/viewpage.html

22 lines
442 B
HTML

{% extends "base.html" %}
{% block content %}
{% autoescape off %}
<table style="align: center; width: 90%; margin-left: auto; margin-right: auto">
<tbody>
<tr>
<td>
<h1>{{ pagecontent.caption }}</h1>
<small>last edited by {{ pagecontent.user.username }} on {{ pagecontent.date }}
</small>
<br><br>
{{pagecontent.content|linebreaks}}<br><br>
</td>
</tr>
</tbody>
</table>
{% endautoescape %}
{% endblock %}