mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
24 lines
No EOL
960 B
Twig
24 lines
No EOL
960 B
Twig
{% macro nav_loop(page) %}
|
|
{% import _self as macros %}
|
|
{% for p in page.children.visible %}
|
|
{% set current_page = (p.active or p.activeChild) ? 'active' : '' %}
|
|
{% if p.children.visible.count > 0 %}
|
|
<li class="{{ current_page }}">
|
|
<a>
|
|
{% if p.header.icon %}<i class="fa fa-{{ p.header.icon }}"></i>{% endif %}
|
|
<span>{{ p.menu }}{% if p.routable ?? false %} <i class="fa fa-angle-down"></i>{% endif %}</span>
|
|
</a>
|
|
<ul>
|
|
{{ macros.nav_loop(p) }}
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li class="{{ current_page }}">
|
|
<a href="{{ p.url }}">
|
|
{% if p.header.icon %}<i class="fa fa-{{ p.header.icon }}"></i>{% endif %}
|
|
<span>{{ p.menu }}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endmacro %} |