{# templates/realization/show.html.twig #} {% extends 'base.html.twig' %} {% block title %} {{ realization.title }} - Réalisation CSP {% endblock %} {% block body %}
{# Fil d'ariane #}
Accueil > Réalisations & Conseils > {{ realization.title }}
{# Détection du type #} {% set isAdvice = (realization.type == constant('App\\Entity\\Realization::TYPE_ADVICE')) %} {# LOGIQUE DE GRILLE : - Si Conseil : Une seule colonne (grid-cols-1) - Si Réalisation : 3 colonnes sur grand écran (lg:grid-cols-3) #}
{# Colonne Principale #} {# LOGIQUE DE LARGEUR : - Si Conseil : Centré avec largeur max (mx-auto max-w-4xl) - Si Réalisation : Prend 2 colonnes sur 3 (lg:col-span-2) #}

{{ realization.title }}

{# Photo Principale #}
{% if realization.mainPhotoUrl %} {{ realization.title }} {% else %} [Photo Principale : {{ realization.title }}] {% endif %}
{# Description Complète #}
{{ realization.description|default('')|raw|nl2br }}
{# Galerie Photos Supplémentaires #} {% if realization.additionalPhotos is not empty %}

Galerie photos

{% for photo in realization.additionalPhotos %}
Photo chantier
{% endfor %}
{% endif %}
{# Sidebar : Infos & Prestation Associée #} {# ON AFFICHE UNIQUEMENT SI CE N'EST PAS UN CONSEIL #} {% if not isAdvice %}
{# Carte Prestation Associée #}

Prestation réalisée

{% if realization.heatingService %}

Chauffage

{{ realization.heatingService.title }}

Voir cette prestation →
{% elseif realization.plumbingService %}

Plomberie

{{ realization.plumbingService.title }}

Voir cette prestation →
{% else %}

Aucune prestation spécifique liée.

{% endif %}

Besoin de la même chose ?

Nos équipes sont prêtes à intervenir pour réaliser un projet similaire chez vous.

{% endif %}
{# Encart Contact (Bas de page) #}

{% if isAdvice %} Une question ? Besoin de précisions ? {% else %} Convaincu par notre travail ? {% endif %}

{% endblock %}