mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-08 14:29:42 +00:00
26 lines
919 B
Twig
26 lines
919 B
Twig
<li class="nav-item dropdown btn btn-primary nav-section">
|
|
<a id="menu-section"
|
|
class="nav-link dropdown-toggle"
|
|
type="button"
|
|
data-bs-toggle="dropdown"
|
|
aria-haspopup="true"
|
|
aria-expanded="false">
|
|
|
|
{{ 'Sections'|trans }}
|
|
</a>
|
|
<div class="dropdown-menu dropdown-menu-end dropdown-menu-dark" aria-labelledby="menu-section">
|
|
{% for menu in menus %}
|
|
<a class="dropdown-item list-group-item bg-dark text-white"
|
|
href="{{ menu.uri }}">
|
|
{{ menu.label }}
|
|
{% apply spaceless %}
|
|
{% if menu.extras.icons is defined %}
|
|
{% for icon in menu.extras.icons %}
|
|
<i class="fa fa-{{ icon }} fa-lg"></i>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endapply %}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</li>
|