diff options
Diffstat (limited to 'templates/html/htmlnavpath.tpl')
-rw-r--r-- | templates/html/htmlnavpath.tpl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/html/htmlnavpath.tpl b/templates/html/htmlnavpath.tpl new file mode 100644 index 0000000..5df06e1 --- /dev/null +++ b/templates/html/htmlnavpath.tpl @@ -0,0 +1,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 %} |