|
|
- {% extends 'base.html.twig' %}
-
- {% block page_title %}Outils{% endblock %}
-
- {% block page_content %}
- <ul class="nav nav-tabs mb-3">
- {% for tool in tools %}
- <li class="nav-item">
- <a class="nav-link{% if app.current_route == tool.route %} active" aria-current="page{% endif %}" href="{{ path(tool.route) }}">{{ tool.label }}</a>
- </li>
- {% endfor %}
- </ul>
- {% block tools_content %}{% endblock %}
- {% endblock %}
|