webbed-site/templates/page-notop.html
2024-09-13 20:20:08 -05:00

14 lines
No EOL
440 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ page.title }}</h1>
{% if page.toc and page.extra.toc %}
<div class="navtoc"><img src="/img/tinystar.gif">
{% for h1 in page.toc %}
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a><img src="/img/tinystar.gif">
{% endfor %}
</div>
{% endif %}
<hr style="border: dashed 1px; color: var(--hovColor); width: 93%; margin: 1em auto;">
{{ page.content | safe }}
{% endblock content %}