14 lines
604 B
HTML
14 lines
604 B
HTML
{% with "/archiv" as cesta %}
|
|
|
|
<div id='submenu'>
|
|
<ul>
|
|
<li class="{% if selected == "cisla" %}selected{% endif %}"><a href="{{cesta}}/cisla/">Čísla</a>
|
|
{# TODO zprovoznit až budou témata v db <li class="{% if selected == "temata" %}selected{% endif %}"><a href="{{cesta}}/temata/">Témata</a> #}
|
|
{# TODO zprovoznit až budou úlohy v db <li class="{% if selected == "ulohy" %}selected{% endif %}"><a href="{{cesta}}/ulohy/">Úlohy</a> #}
|
|
{# <li class="{% if selected == "vysledky" %}selected{% endif %}"><a href="{{cesta}}/vysledky/">Výsledkové listiny</a> #}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endwith %}
|
|
|
|
|