commiting

This commit is contained in:
2023-12-15 10:30:18 -05:00
parent b6b7ac2418
commit 5db1626ef1
410 changed files with 52075 additions and 318 deletions

View File

@@ -0,0 +1,19 @@
{% for page in pages %}
<li>
{% if title == page %}
<a href="{{ pages[page] }}" class="nav-link text-secondary">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
{{ page }}
</a>
{% else %}
<a href="{{ pages[page] }}" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
{{ page }}
</a>
{% endif %}
</li>
{% endfor %}