mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
19 lines
522 B
Twig
19 lines
522 B
Twig
<div class="{{ 'menu-' ~ menus.name }}">
|
|
<ul>
|
|
{% for menu in menus %}
|
|
<li>
|
|
<a class=""
|
|
href="{{ menu.uri }}">
|
|
<h3>{{ menu.label|trans }}</h3>
|
|
|
|
{% if menu.extras.explain is defined %}
|
|
<div class="" >
|
|
{{ menu.extras.explain|trans }}
|
|
</div>
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|