flashwave
57542ac936
Urls is mostly implemented in the yuuno templates, all else will come tomorrow since i'm tired. Signed-off-by: Flashwave <me@flash.moe>
13 lines
398 B
Smarty
13 lines
398 B
Smarty
<div class="head">
|
|
Navigation
|
|
</div>
|
|
<div class="right-menu-nav">
|
|
{% for catname,category in pages %}
|
|
<div>{{ category.title }}</div>
|
|
{% for mname,mode in category.modes %}
|
|
{% if mode.access %}
|
|
<a href="{{ urls.format('SETTING_MODE', [catname, mname]) }}">{{ mode.title }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|