thsf.net/build/lib/thsf/templates/navbar.html

9 lines
251 B
HTML
Raw Normal View History

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