quart-imp/docs/_templates/__menu__.html
2024-08-16 15:36:56 +01:00

32 lines
1.2 KiB
HTML

<aside>
<img src="static/quart-Imp-Medium.png" alt="Quart-Imp Logo" style="margin-top: 20px; width: 50%">
<h1>Quart-Imp</h1>
<div><small>Version: 1.0.x</small></div>
<div><small>Last Updated:</small></div>
<div><small>{{ date }}</small></div>
<h2>Menu</h2>
<ul>
<li><a href="index.html"><strong>Index</strong></a></li>
</ul>
<ul>
{% for title, values in menu.items() %}
{% if values["page"] %}
<li><a href="{{ values["page"] }}"><strong>{{ title }}</strong></a></li>
{% else %}
<li><strong>{{ title }}</strong></li>
{% endif %}
{% if values["pages"] %}
<ul>
{% for page in values["pages"] %}
{% if page[page.keys()|list|first] %}
<li><a href="{{ page[page.keys()|list|first] }}">{{ page.keys()|list|first }}</a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>
<div style="padding-top: 5px; margin-bottom: 20px;"><small>Hosted on GitHub Pages.</small></div>
</aside>