{% extends 'base.html.twig' %} {% block title %}Entity Card - Design System - Bubul{% endblock %} {% block body %}
← Design System

Entity Card

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).

Trois cartes avec accent, cinq blocs renseignés

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.

{% embed '_organisms/entity-card/entity-card.html.twig' with { href: '#', accent: '#0C81E4', attr: { 'data-demo-entity-id': 'exemple-1' } } only %} {% block badge %}
Présentation
{% endblock %} {% block body %}

Lancement produit T3

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 %}
{% include '_molecules/action-menu/action-menu.html.twig' with { withTrigger: true, position: 'right-0 top-full mt-1', items: [ {label: 'Renommer', icon: 'edit', href: '#'}, {label: 'Dupliquer', icon: 'copy', href: '#'} ], dangerItems: [ {label: 'Supprimer', icon: 'trash', href: '#'} ], accentHex: '#0C81E4' } only %}
{% endblock %} {% endembed %} {% embed '_organisms/entity-card/entity-card.html.twig' with { href: '#', accent: '#1E40AF', attr: { 'data-demo-entity-id': 'exemple-2' } } only %} {% block badge %}
Module + Quiz
{% endblock %} {% block body %}

Onboarding sécurité

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 %}
{% include '_molecules/action-menu/action-menu.html.twig' with { withTrigger: true, position: 'right-0 top-full mt-1', items: [ {label: 'Exporter (ZIP)', icon: 'download', href: '#'}, {label: 'Renommer', icon: 'edit', href: '#'} ], dangerItems: [ {label: 'Supprimer', icon: 'trash', href: '#'} ], accentHex: '#1E40AF' } only %}
{% endblock %} {% endembed %} {% embed '_organisms/entity-card/entity-card.html.twig' with { href: '#', accent: '#F59E0B', attr: { 'data-demo-entity-id': 'exemple-3' } } only %} {% block badge %}
Podcast
{% endblock %} {% block body %}

Résumé hebdomadaire

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 %}
{% include '_molecules/action-menu/action-menu.html.twig' with { withTrigger: true, position: 'right-0 top-full mt-1', items: [ {label: 'Renommer', icon: 'edit', href: '#'} ], dangerItems: [ {label: 'Supprimer', icon: 'trash', href: '#'} ], accentHex: '#F59E0B' } only %}
{% endblock %} {% endembed %}

Sans accent : repli sur la couleur primaire

accent omis : aucune variable --acc n'est posée sur le conteneur, le liseré au survol retombe sur var(--color-primary).

{% embed '_organisms/entity-card/entity-card.html.twig' with { href: '#' } only %} {% block badge %}
Sans accent
{% endblock %} {% block body %}

Carte de repli

Aucun accent fourni

{% endblock %} {% block footerLeft %}20 juillet 2026{% endblock %} {% endembed %}

Paramètres

ParamètreTypeDéfautDescription
hrefstring(requis)Cible de la carte
accentstringnullCouleur hex du liseré et du titre au survol
attrobject{}Attributs data du conteneur
classstring''Classes additionnelles du conteneur

Blocs

BlocDescription
badgePastille de type, en haut du corps
bodyTitre et métadonnées
footerLeftPied, à gauche (date en général)
footerRightPied, à droite (tokens, énergie)
menuMenu contextuel, positionné en absolu

Code

{% 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

{% endblock %}