11 lines
363 B
HTML
11 lines
363 B
HTML
{% with "/archiv" as cesta %}
|
|
|
|
<ul>
|
|
<li class="{% if selected == "cisla" %}selected{% endif %}"><a href="{{cesta}}/cisla/">Čísla</a>
|
|
<li class="{% if selected == "temata" %}selected{% endif %}"><a href="{{cesta}}/temata/">Témata</a>
|
|
<li class="{% if selected == "ulohy" %}selected{% endif %}"><a href="{{cesta}}/ulohy/">Úlohy</a>
|
|
</ul>
|
|
|
|
{% endwith %}
|
|
|
|
|