grav-theme-future2021/templates/partials/navigation.html.twig
2023-04-17 20:32:09 +02:00

18 lines
449 B
Twig
Executable file

{% import 'macros/topmenu.html.twig' as macros %}
<ul>
{{ macros.nav_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 %}
{{ mitem.text|raw }}
</a>
</li>
{% endfor %}
{% endif %}
</ul>