webbed-site/templates/page.html

17 lines
620 B
HTML
Raw Normal View History

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-09-13 20:36:25 -05:00
{% for h2 in page.toc %}
<a href="{{ h2.permalink | safe }}">{{ h2.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 %}