You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
424 B

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