{% extends 'base.html.twig' %} {% block title %}Entity Card - Design System - Bubul{% endblock %} {% block body %}
Coque de carte des bibliothèques d'outils : liseré d'accent au survol, corps, pied daté, emplacement du menu contextuel. Le markup était dupliqué à l'identique entre la carte Moodia et la carte Scormia ; ce composant en est l'extraction. Chaque outil ne fournit plus que son contenu, via les cinq blocs (badge, body, footerLeft, footerRight, menu).
Chaque carte utilise un accent différent (#0C81E4, #1E40AF, #F59E0B) : survolez une carte pour voir le liseré du haut et le titre reprendre cette couleur. Le bloc menu (bouton ⋯) est positionné hors du lien, en haut à droite, pour ne pas déclencher de navigation au clic.
12 diapositives · thème « Aurora »
{% endblock %} {% block footerLeft %}31 juillet 2026{% endblock %} {% block footerRight %} {% include '_atoms/icon/icon.html.twig' with { name: 'token', size: 'xs', color: 'current' } only %} 1 200 tokens {% include '_atoms/icon/icon.html.twig' with { name: 'bolt', size: 'xs', color: 'warning' } only %} 0,4 Wh {% endblock %} {% block menu %}3 parties · 9 écrans
{% endblock %} {% block footerLeft %}28 juillet 2026{% endblock %} {% block footerRight %} {% include '_atoms/icon/icon.html.twig' with { name: 'token', size: 'xs', color: 'current' } only %} 850 tokens {% endblock %} {% block menu %}4 min 30 · voix « Claire »
{% endblock %} {% block footerLeft %}25 juillet 2026{% endblock %} {% block footerRight %} {% include '_atoms/icon/icon.html.twig' with { name: 'bolt', size: 'xs', color: 'warning' } only %} 0,9 Wh {% endblock %} {% block menu %}accent : repli sur la couleur primaireaccent omis : aucune variable --acc n'est posée sur le conteneur, le liseré au survol retombe sur var(--color-primary).
Aucun accent fourni
| Paramètre | Type | Défaut | Description |
|---|---|---|---|
| href | string | (requis) | Cible de la carte |
| accent | string | null | Couleur hex du liseré et du titre au survol |
| attr | object | {} | Attributs data du conteneur |
| class | string | '' | Classes additionnelles du conteneur |
| Bloc | Description |
|---|---|
| badge | Pastille de type, en haut du corps |
| body | Titre et métadonnées |
| footerLeft | Pied, à gauche (date en général) |
| footerRight | Pied, à droite (tokens, énergie) |
| menu | Menu contextuel, positionné en absolu |
{% verbatim %}{% embed '_organisms/entity-card/entity-card.html.twig' with {
href: path('app_slidia_editor', {uuid: presentation.uuid}),
accent: '#F59E0B',
attr: { 'data-presentation-id': presentation.id }
} only %}
{% block badge %}Présentation{% endblock %}
{% block body %}{{ presentation.title }}
{% endblock %}
{% block footerLeft %}{{ presentation.updatedAt|format_datetime('long', 'none') }}{% endblock %}
{% endembed %}{% endverbatim %}
Fichier : templates/_organisms/entity-card/entity-card.html.twig