9 lines
285 B
HTML
9 lines
285 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
{{ page.content | safe }}
|
||
|
<p style="text-align: right; margin: auto; position:sticky; bottom: 15px;"><a href="#top" title="return to top">
|
||
|
<i class="ph ph-arrow-line-up"></i>
|
||
|
</a></p>
|
||
|
{% endblock content %}
|