{# templates/classified_ad/index.html.twig #} {% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}{{ ad.title }} — Petites annonces{% endblock %} {% block body %} Accueil Petites annonces {{ ad.title|u.truncate(40, '…') }} {# ========================= Columna de fotos ========================= #} {% if ad.photos|length > 0 %} {% for photo in ad.photos %} {% if photo.fileName %} {% endif %} {% endfor %} {% if ad.photos|length > 1 %} {% endif %} {% else %} Aucune photo {% endif %} {# ========================= Columna info ========================= #} {% if ad.status %} Disponible {% endif %} {{ ad.title }} {% if ad.condition %}État : {{ ad.condition }}{% endif %} {% if ad.location %}Localisation : {{ ad.location }}{% endif %} {% if ad.publishedAt %}Publiée : {{ ad.publishedAt|date('d/m/Y') }}{% endif %} {% if ad.price is not null %}{{ ad.price|number_format(0, ',', ' ') }} €{% else %}-{% endif %} {% if ad.description %} Description {{ ad.description|nl2br }} {% endif %} Contacter le vendeur {% endblock %}
{{ ad.description|nl2br }}