mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
35 lines
No EOL
1 KiB
Twig
35 lines
No EOL
1 KiB
Twig
{% block menu_navigation %}
|
|
{% macro loop(page) %}
|
|
{% for p in page.children.visible %}
|
|
{% set current_page = (p.active or p.activeChild) ? 'active' : '' %}
|
|
<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>
|
|
{% if p.children.visible.count > 0 %}
|
|
<ul class="subitem">
|
|
{{ _self.loop(p) }}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
{% endmacro %}
|
|
<ul class="menulink">
|
|
{{ _self.loop(pages) }}
|
|
{% if theme_var('custommenus.enabled') %}
|
|
{% for mitem in theme_var('custommenu') %}
|
|
<li>
|
|
<a href="{{ mitem.url }}" target="{{ mitem.target }}">
|
|
{% if mitem.icon %}
|
|
<i class="fa fa-{{ mitem.icon }}"></i>
|
|
{% endif %}
|
|
<span>{{ mitem.text }}</span>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %} |