13 lines
320 B
HTML
13 lines
320 B
HTML
|
|
<!-- prettier-ignore -->
|
||
|
|
{% extends "base.html" %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div id="content">
|
||
|
|
{{content|safe}}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
{%if previous != ""%}<a href={{previous}}>previous</a>{%endif%}{%if previous != "" && next != ""%} / {%endif%}{%if next != ""%}<a href={{next}}>next</a>{%endif%}
|
||
|
|
</footer>
|
||
|
|
{% endblock %}
|