56debe5a185ccbf63eb514c29e1b843b9b60ed81
[prawokultury.git] / menu / templates / menu / menu.html
1 {% load i18n %}
2 {% for item in items %}
3     <li{% if item.active %} 
4         class="active"{%endif %} {% if item.html_id %}
5         id="{{ item.html_id}}"{% endif %}>
6         <a href="{{ item.get_url }}">{{ item.get_title }}</a></li>
7 {% endfor %}