11 lines
410 B
HTML
11 lines
410 B
HTML
{% with "/soustredeni" as cesta %}
|
|
|
|
<div id='submenu'>
|
|
<ul>
|
|
<li class="{% if selected == "uvod" %}selected{% endif %}"><a href="{{cesta}}/">Úvod</a>
|
|
<li class="{% if selected == "pripravujeme" %}selected{% endif %}"><a href="{{cesta}}/pripravujeme/">Připravujeme</a>
|
|
<li class="{% if selected == "probehlo" %}selected{% endif %}"><a href="{{cesta}}/probehlo/">Proběhlo</a>
|
|
</ul>
|
|
</div>
|
|
|
|
{% endwith %}
|