1
0
Files
sardines/templates/inc/pages.nav.html
2015-08-09 22:49:57 +02:00

11 lines
375 B
HTML

<div class="ui horizontal divider"><i class="file icon"></i></div>
<nav class="ui large vertical fluid secondary menu">{% for p in PAGES %}
{% if page and p.slug == page.slug %}
<a href="{{ SITEURL }}/{{ p.url }}" class="active item">{{ p.title }}</a>
{% else %}
<a href="{{ SITEURL }}/{{ p.url }}" class="item">{{ p.title }}</a>
{% endif %}
{% endfor %}
</nav>