New menu.
[wolnelektury.git] / src / chunks / templates / chunks / menu.html
1 {% for item in menu.menuitem_set.all %}
2   <li>
3     {% if item.has_link %}
4       <a href="{{ item.final_link }}" tabindex="-1">
5     {% endif %}
6     {% if item.highlight %}
7     {% endif %}
8     {{ item.final_name }}
9     {% if item.has_link %}
10       </a>
11     {% endif %}
12   </li>
13 {% endfor %}