{% extends 'base.html.twig' %} {% set seo = page %} {% set seo_title = page.resolveTitle %} {% set trail = [{ label: 'Accueil', url: path('home') }, { label: 'La pépinière', url: path('nursery_index') }] %} {% block body %}
{{ include('_partials/breadcrumb.html.twig') }}

{{ page.eyebrow|default('La pépinière') }}

{{ page.heading }}

{% if page.intro %}

{{ page.intro }}

{% endif %}
{% if page.image %}
{{ include('_partials/photo.html.twig', { media: page.image, filter: 'hero', ratio: '3 / 2', loading: 'eager', sizes: '(min-width: 1024px) 40vw, 100vw' }) }}
{% endif %}
{{ page.body|rich }}
{# La colonne d'appui : ce qu'on cherche quand on lit une page « qui sommes-nous », et qui n'a rien à faire au milieu du récit. #}
{% set others = pages|filter(p => p.slug != page.slug) %} {% if others|length %}

Aller plus loin

{% endif %} {% if testimonials|length %}

Ce qu'on nous dit

{% for testimonial in testimonials %}
« {{ testimonial.quote }} »
{{ testimonial.author }}{% if testimonial.city %}, {{ testimonial.city }}{% endif %} — {{ testimonial.source }}
{% endfor %}
{% endif %}
{{ include('_partials/cta.html.twig') }}
{% endblock %}