{% extends 'base.html.twig' %} {% block title %}Section Divider - Design System - Bubul{% endblock %} {% block body %}
{# ===== HEADER ===== #}
Molecules /

Section Divider

Separateur de section avec icone, titre, sous-titre et ligne decorative

{# ===== COMPOSITION ===== #}

Composition

Icon = SectionDivider
{# ===== USAGE ===== #}

Usage

{% verbatim %}{# Simple include #}
{% include '_molecules/section-divider/section-divider.html.twig' with {
    title: 'Vos outils',
    icon: 'widget-add',
    iconColor: 'primary'
} %}

{# Avec slot droit via embed #}
{% embed '_molecules/section-divider/section-divider.html.twig' with {
    title: 'Activités récentes',
    subtitle: '30 derniers jours',
    icon: 'clock',
    iconColor: 'info'
} %}
    {% block right %}
        
    {% endblock %}
{% endembed %}{% endverbatim %}

Fichier : templates/_molecules/section-divider/section-divider.html.twig

{# ===== SIMPLE ===== #}

Simple

Icone + titre uniquement

{% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Vos outils', icon: 'widget-add', iconColor: 'primary' } %}
{# ===== AVEC SOUS-TITRE ===== #}

Avec sous-titre

Parametre : subtitle

{% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Vos badges', subtitle: '5 débloqués sur 9', icon: 'medal-star', iconColor: 'warning' } %}
{# ===== AVEC SLOT DROIT ===== #}

Avec slot droit

Utilise {% verbatim %}{% embed %}{% endverbatim %} avec {% verbatim %}{% block right %}{% endverbatim %}

{% embed '_molecules/section-divider/section-divider.html.twig' with { title: 'Activités récentes', subtitle: '30 derniers jours', icon: 'clock', iconColor: 'info' } %} {% block right %} {% include '_atoms/button/button.html.twig' with { label: 'Voir tout', variant: 'ghost', size: 'sm', icon: 'arrow-right', iconPosition: 'right' } %} {% endblock %} {% endembed %}
{# ===== COULEURS ===== #}

Couleurs

Parametre : iconColor

{% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Primary', icon: 'widget-add', iconColor: 'primary' } %} {% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Warning', icon: 'star', iconColor: 'warning' } %} {% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Success', icon: 'check-circle', iconColor: 'success' } %} {% include '_molecules/section-divider/section-divider.html.twig' with { title: 'Info', icon: 'info-circle', iconColor: 'info' } %}
{# ===== PARAMETRES ===== #}

Parametres

Parametre Type Defaut Description
titlestring'Section'Titre de la section
subtitlestringnullSous-titre (ex: "5 debloques sur 9")
iconstringnullNom de l'icone
iconColorstring'primary'Couleur de l'icone/fond
classstring''Classes additionnelles

Block disponible

{% verbatim %}{% block right %}{% endverbatim %} - Slot pour contenu a droite (bouton, lien, etc.). Utiliser {% verbatim %}{% embed %}{% endverbatim %} au lieu de {% verbatim %}{% include %}{% endverbatim %} pour exploiter ce block.

{% endblock %}