blob: 5df06e1f63a72329a1c338b52197b3fad552b0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{# input: navpath which is a list of links #}
{% if navpath %}
<div id="nav-path" class="navpath">
<ul>
{% for obj in navpath %}
<li class="navelem">
{% with text=obj.text %}
{% include 'htmlobjlink.tpl' %}
{% endwith %}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
|