You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
734 B
27 lines
734 B
{% macro nav_loop(page) %}
|
|
{% for p in page.children.visible %}
|
|
{% set active_page = (p.active or p.activeChild) ? 'active' : '' %}
|
|
{% if p.children.visible.count > 0 %}
|
|
<li>
|
|
<a href="{{ p.url }}" class="{{ active_page }}">
|
|
{{ p.menu }}
|
|
</a>
|
|
<ul>
|
|
{{ _self.nav_loop(p) }}
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li>
|
|
<a href="{{ p.url }}" class="{{ active_page }}">
|
|
{{ p.menu }}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
|
|
<ul {{ tree ? 'class="tree"' : '' }}>
|
|
{{ _self.nav_loop(pages) }}
|
|
</ul>
|
|
|