thsf.net/src/thsf/templates/navbar.html

9 lines
251 B
HTML
Raw Normal View History

2023-04-09 04:38:07 +02:00
<div id="navbar_wrapper">
{% for item in navbar %}
2023-04-09 09:40:48 +02:00
<i class="button tooltip black {{ item.classes }}"
onclick="document.location='{{item.url}}'">
<span class="tooltiptext thin">{{item.name}}</span>
</i>
2023-04-09 04:38:07 +02:00
{% endfor %}
2023-04-09 08:29:44 +02:00
</div>