remove the banner
[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       <em>
8     {% endif %}
9     {{ item.final_name }}
10     {% if item.highlight %}
11       </em>
12     {% endif %}
13     {% if item.has_link %}
14       </a>
15     {% endif %}
16   </li>
17 {% endfor %}