grav-theme-future2021/templates/partials/navigation.html.twig
pmoreno.rodriguez b5621e7728 Version 1.0.2
2022-11-08 21:42:43 +01:00

18 lines
549 B
Twig

{% import 'macros/topmenu.html.twig' as macros %}
<ul>
{{ macros.nav_loop(pages) }}
{% if theme_var('displaycustommenus.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>