{% extends 'base.html.twig' %} {% set seo = service %} {% set seo_title = service.resolveTitle %} {% set is_area = service.kind.value == 'area' %} {% set trail = [ { label: 'Accueil', url: path('home') }, { label: 'Paysagiste', url: path('service_index') }, { label: service.name, url: path('service_show', { slug: service.slug }) } ] %} {% block schema %} {% endblock %} {% block body %}
{{ include('_partials/breadcrumb.html.twig') }}

{{ is_area ? 'Secteur d\'intervention' : 'Prestation' }}

{{ service.heading }}

{% if service.intro %}

{{ service.intro }}

{% endif %} Demander un devis
{% if service.image %}
{{ include('_partials/photo.html.twig', { media: service.image, filter: 'hero', ratio: '3 / 2', loading: 'eager', sizes: '(min-width: 1024px) 40vw, 100vw' }) }}
{% endif %}
{% if service.body %}
{{ service.body|rich }}
{% endif %} {% if service.localProof %}

Un chantier près de chez vous

{{ service.localProof|rich }}
{% endif %} {% if service.inclusions %}

Ce que comprend la prestation

{{ service.inclusions|rich }}
{% endif %}
{# — Ce qu'on plante ici, et pourquoi. Sur une page de secteur, c'est ce qui la distingue de sa voisine : le calcaire de plateau et l'argile poyaudine ne portent pas les mêmes essences. — #} {% if service.recommendedPlants|length %}

{{ is_area ? 'Sur ce secteur' : 'Ce que nous plantons' }}

{{ is_area ? 'Ce qui tient sur ces terres' : 'Les végétaux que nous installons le plus' }}

{% if service.recommendationNote %}

{{ service.recommendationNote }}

{% endif %}
{% for plant in service.recommendedPlants|filter(p => p.published)|slice(0, 8) %} {{ include('_partials/plant-card.html.twig', { plant: plant }) }} {% endfor %}
Voir tout le catalogue
{% endif %} {% if siblings|length %}

{{ is_area ? 'Ce que nous faisons sur ce secteur' : 'Nos autres prestations' }}

{% for sibling in siblings %} {{ sibling.name }} {% endfor %}
{% endif %} {% endblock %}