fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
56ccfa2587742e86bdefe01b920fd97287387a92
[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 %}