{# Widget Cards - Affiche une grille de cartes polyvalentes #} {% if cards is defined and cards|length > 0 %}
{% for card in cards %} {% set imageType = card.imageType|default('image') %} {% set showImage = (imageType == 'image' or imageType == 'both') and card.image is defined and card.image %} {% set showIcon = (imageType == 'icon' or imageType == 'both') and card.icon is defined and card.icon %} {% if imagePosition == 'left' and showImage %} {# Image à gauche - Layout horizontal #}
{{ card.title|default('') }}
{% if showIcon %}
{% endif %} {% if card.title is defined and card.title %}

{{ card.title }}

{% endif %} {% if card.subtitle is defined and card.subtitle %}

{{ card.subtitle }}

{% endif %} {% if card.description is defined and card.description %}
{{ card.description|raw }}
{% endif %} {% if card.buttonEnabled|default(false) and card.buttonText is defined %} {{ card.buttonText }} {% endif %}
{% elseif imagePosition == 'background' and showImage %} {# Image en arrière-plan #}
{{ card.title|default('') }}
{% if showIcon %}
{% endif %} {% if card.title is defined and card.title %}

{{ card.title }}

{% endif %} {% if card.subtitle is defined and card.subtitle %}

{{ card.subtitle }}

{% endif %} {% if card.description is defined and card.description %}
{{ card.description|raw }}
{% endif %} {% if card.buttonEnabled|default(false) and card.buttonText is defined %} {{ card.buttonText }} {% endif %}
{% else %} {# Image en haut ou sans image #}
{% if showImage %}
{{ card.title|default('') }}
{% endif %}
{% if showIcon %}
{% endif %} {% if card.title is defined and card.title %}

{{ card.title }}

{% endif %} {% if card.subtitle is defined and card.subtitle %}

{{ card.subtitle }}

{% endif %} {% if card.description is defined and card.description %}
{{ card.description|raw }}
{% endif %} {% if card.buttonEnabled|default(false) and card.buttonText is defined %} {{ card.buttonText }} {% endif %}
{% endif %} {% endfor %}
{% else %}

Aucune carte configurée.

{% endif %}