{% extends 'base.html.twig' %} {% block title %}Card - Design System - Bubul{% endblock %} {% block body %}
La Card utilise {% verbatim %}{% embed %}{% endverbatim %} au lieu de {% verbatim %}{% include %}{% endverbatim %},
ce qui permet d'injecter n'importe quel contenu HTML via les blocks Twig.
{% verbatim %}{% embed '_molecules/card/card.html.twig' with {
title: 'Mon titre',
subtitle: 'Sous-titre optionnel',
icon: 'settings'
} %}
{% block body %}
Contenu de la card
{% endblock %}
{% block footer %}
{% endblock %}
{% endembed %}{% endverbatim %}
Fichier : templates/_molecules/card/card.html.twig
Paramètre : variant
Default
{% embed '_molecules/card/card.html.twig' with { title: 'Card Default', variant: 'default' } %} {% block body %}Style par défaut avec ombre légère et bordure subtile.
{% endblock %} {% endembed %}Elevated
{% embed '_molecules/card/card.html.twig' with { title: 'Card Elevated', variant: 'elevated' } %} {% block body %}Ombre plus prononcée pour mise en avant.
{% endblock %} {% endembed %}Bordered
{% embed '_molecules/card/card.html.twig' with { title: 'Card Bordered', variant: 'bordered' } %} {% block body %}Bordure plus visible, sans ombre.
{% endblock %} {% endembed %}Flat
{% embed '_molecules/card/card.html.twig' with { title: 'Card Flat', variant: 'flat' } %} {% block body %}Fond gris subtil, style minimaliste.
{% endblock %} {% endembed %}Paramètres : icon, iconColor, subtitle
Visiteurs uniques
{% endblock %} {% endembed %} {% embed '_molecules/card/card.html.twig' with { title: 'Revenus', subtitle: 'Ce mois', icon: 'wallet', iconColor: 'success' } %} {% block body %}Par rapport au mois dernier
{% endblock %} {% endembed %}Block : {% verbatim %}{% block footer %}{% endverbatim %}
Jean Dupont
jean.dupont@email.com
{% endblock %} {% block footer %}Refonte du site web
Paramètres : href, hover
Accédez à la documentation complète du projet.
{% endblock %} {% endembed %} {% embed '_molecules/card/card.html.twig' with { title: 'Support', icon: 'help', href: '#', iconColor: 'warning' } %} {% block body %}Besoin d'aide ? Contactez notre équipe support.
{% endblock %} {% endembed %} {% embed '_molecules/card/card.html.twig' with { title: 'Paramètres', icon: 'settings', href: '#', iconColor: 'muted' } %} {% block body %}Configurez votre espace de travail.
{% endblock %} {% endembed %}Activé quand status est défini — Style quick-action avec animations hover
Mode Action transforme la Card en bouton d'action avec : icône avec background, animations au hover (scale, rotation, translation), flèche qui slide-in, et ombre colorée.
{% verbatim %}{% embed '_molecules/card/card.html.twig' with {
title: 'Créer un cours',
description: 'Générez un cours depuis un PDF',
icon: 'bubul-moodia',
status: 'available',
href: '/moodia'
} %}{% endembed %}{% endverbatim %}
Status: available (interactif)
Status: locked (non-interactif)
Status: coming (bientôt disponible)
Valeurs de status :
available
locked
coming
Paramètre : padding
padding: none
padding: sm
{% endblock %} {% endembed %} {% embed '_molecules/card/card.html.twig' with { title: 'Medium', padding: 'md' } %} {% block body %}padding: md (défaut)
{% endblock %} {% endembed %} {% embed '_molecules/card/card.html.twig' with { title: 'Large', padding: 'lg' } %} {% block body %}padding: lg
{% endblock %} {% endembed %}| Paramètre | Type | Défaut | Description |
|---|---|---|---|
title | string | null | Titre du header |
subtitle | string | null | Sous-titre du header |
description | string | null | Description (pour mode action) |
icon | string | null | Nom de l'icône |
iconColor | string | primary | Couleur de l'icône |
status | string | null | available, locked, coming (active le Mode Action) |
badge | string | null | Badge texte (ex: "Nouveau", "Bientôt") |
variant | string | default | default, elevated, bordered, flat |
padding | string | md | none, sm, md, lg |
href | string | null | URL (rend la card cliquable) |
hover | bool | false | Effet hover (auto si href) |
class | string | '' | Classes additionnelles |
| Block | Description |
|---|---|
{% verbatim %}{% block body %}{% endverbatim %} | Contenu principal de la card (requis) |
{% verbatim %}{% block footer %}{% endverbatim %} | Footer optionnel avec fond gris |
{% verbatim %}{% block headerAction %}{% endverbatim %} | Action dans le header (bouton, badge...) |