mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
18 lines
449 B
Twig
Executable file
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>
|