mamweb/mamweb/templates/menu_mobile_dropdown.html
2019-12-18 23:42:11 +01:00

8 lines
344 B
HTML

{% load sitetree %}
<ul class="submenu_mobile">
{% for item in sitetree_items %}
<li {% if item.is_current or item.in_current_branch %}class="active"{% endif %}>
<a href="{% sitetree_url for item %}" {% if item.hint %}title="{{ item.hint }}"{% endif %}>{{ item.title_resolved }}</a>
</li>
{% endfor %}
</ul>