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 %}{{ 'title.tools'|trans }}{% 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[app.request.locale] }}</a>
							 | 
						
						
						
							| 
								
							 | 
							
								  </li>
							 | 
						
						
						
							| 
								
							 | 
							
								  {% endfor %}
							 | 
						
						
						
							| 
								
							 | 
							
								</ul> 
							 | 
						
						
						
							| 
								
							 | 
							
								{% block tools_content %}{% endblock %}
							 | 
						
						
						
							| 
								
							 | 
							
								{% endblock %}
							 |