{% extends 'base.html.twig' %} {% block title %}Page d'accueil {% endblock %} {% block body %}
{% set isRealImageShown = false %}
{% for vehicle in vehicles %} {% if vehicle.images is defined and vehicle.images|length > 0 %} {% set image = vehicle.images[0] %} {% set isRealImageShown = true %}
{{ vehicle.brand }}
{% endif %} {% endfor %} {% if not isRealImageShown %} {% for vehicle in vehicles %}
{{ vehicle.brand }}
{% endfor %} {% endif %}

{{ include('repair/category_repairs.twig')}}
{{ include('testimony/index.html.twig') }} {{ include('_partials/_footer.html.twig', { 'business_hours': business_hours }) }}{% endblock %} {% block javascripts %} {% endblock %}