mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
14 lines
505 B
Twig
14 lines
505 B
Twig
<div class="grid-4">
|
|
<ul class="tab-nav follow-href-path">
|
|
<li class="title">{{ 'Admin Menu'|trans }}</li>
|
|
{% for route in routes %}
|
|
<li class="{% spaceless %}
|
|
{% if route.key == activeRouteKey %}
|
|
active
|
|
{% endif %}
|
|
{% endspaceless %} ">
|
|
<a href="{{ path(route.key, args ) }}" >{{ route.label|trans }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div> |