{% for testimonial in testimonials %}
{# Quote icon décoratif #}
{# Contenu du témoignage #}

"{{ testimonial.text }}"

{# Note en étoiles #} {% if showRating and testimonial.rating %}
{% for i in 1..5 %} {% if i <= testimonial.rating %} ★ {% else %} ☆ {% endif %} {% endfor %}
{% endif %} {# Auteur - Compatible avec author/photo ET name/image #} {% set authorName = testimonial.author ?? testimonial.name ?? 'Anonyme' %} {% set authorPhoto = testimonial.photo ?? testimonial.image ?? null %}
{% if showPhoto %} {% if authorPhoto %} {{ authorName }} {% else %}
{{ authorName|first|upper }}
{% endif %} {% endif %}
{{ authorName }}
{% if testimonial.position is defined and testimonial.position %}
{{ testimonial.position }}
{% endif %}
{% endfor %}