mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
15 lines
446 B
Twig
15 lines
446 B
Twig
<div class="columns four">
|
|
<ul class="tab-nav follow-href-path">
|
|
{% for menu in menu_composer.getRoutesFor(menu) %}
|
|
<li class="{% spaceless %}
|
|
{% if menu.route == activeRouteKey %}
|
|
active
|
|
{% endif %}
|
|
{% endspaceless %} ">
|
|
<a href="{{ path(menu.route, args) }}" >{{ menu.label|trans }}</a>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div> |