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.
|
{% 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 %}
|