2024-07-07 08:27:18 -05:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-09-13 20:20:08 -05:00
|
|
|
<h1>{{ page.title }}</h1>
|
2024-07-07 20:53:05 -05:00
|
|
|
{% if page.toc and page.extra.toc %}
|
2024-09-13 20:20:08 -05:00
|
|
|
<div class="navtoc"><img src="/img/tinystar.gif" alt="tiny star">
|
2024-07-07 08:27:18 -05:00
|
|
|
{% for h1 in page.toc %}
|
2024-09-13 20:20:08 -05:00
|
|
|
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a><img src="/img/tinystar.gif">
|
2024-07-07 08:27:18 -05:00
|
|
|
{% endfor %}
|
2024-09-13 20:20:08 -05:00
|
|
|
</div>
|
2024-07-07 08:27:18 -05:00
|
|
|
{% endif %}
|
2024-09-13 20:20:08 -05:00
|
|
|
<hr style="border: dashed 1px; color: var(--hovColor); width: 93%; margin: 1em auto;">
|
|
|
|
{{ 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>
|
2024-07-07 08:27:18 -05:00
|
|
|
{% endblock content %}
|