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

10 lines
302 B
HTML
Raw Normal View History

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