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

Link

Liens stylisés avec icônes optionnelles

{# ===== USAGE ===== #}

Usage

{% verbatim %}{% include '_atoms/link/link.html.twig' with {
    href: '/contact',
    label: 'Contactez-nous',
    variant: 'primary',
    icon: 'arrow-right'
} %}{% endverbatim %}

Fichier : templates/_atoms/link/link.html.twig

{# ===== EXEMPLES DE BASE ===== #}

Exemples de base

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Lien simple' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Avec icône', icon: 'arrow-right' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Retour', icon: 'arrow-left', iconPosition: 'left' } %}
{# ===== VARIANTES ===== #}

Variantes de couleur

Paramètre : variant

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Primary', variant: 'primary' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Dark', variant: 'dark' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Muted', variant: 'muted' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Danger', variant: 'danger' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Success', variant: 'success' } %}
{% include '_atoms/link/link.html.twig' with { href: '#', label: 'White (sur fond sombre)', variant: 'white' } %}
{# ===== TAILLES ===== #}

Tailles

Paramètre : size

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Small', size: 'sm' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Medium', size: 'md' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Large', size: 'lg' } %}
{# ===== SOULIGNEMENT ===== #}

Soulignement

Paramètre : underline

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Pas de soulignement', underline: 'none' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Au survol (défaut)', underline: 'hover' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Toujours souligné', underline: 'always' } %}
{# ===== AVEC ICÔNES ===== #}

Avec icônes

Paramètres : icon, iconPosition

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'En savoir plus', icon: 'arrow-right' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Retour', icon: 'arrow-left', iconPosition: 'left', variant: 'muted' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Lien externe', icon: 'link', target: '_blank' } %}
{# ===== ÉTATS ===== #}

États

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Normal' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Désactivé', disabled: true } %}
{# ===== EXEMPLE : NAVIGATION ===== #}

Exemple : Navigation breadcrumb

{# ===== EXEMPLE : FOOTER ===== #}

Exemple : Footer links

{% include '_atoms/link/link.html.twig' with { href: '#', label: 'Mentions légales', variant: 'white', size: 'sm' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Confidentialité', variant: 'white', size: 'sm' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'CGU', variant: 'white', size: 'sm' } %} {% include '_atoms/link/link.html.twig' with { href: '#', label: 'Contact', variant: 'white', size: 'sm' } %}
{# ===== PARAMÈTRES ===== #}

Paramètres

Paramètre Type Défaut Description
hrefstring#URL du lien
labelstring''Texte du lien
targetstringnullTarget (_blank, etc.)
variantstringprimaryprimary, dark, muted, danger, success, white
sizestringmdsm, md, lg
underlinestringhovernone, hover, always
iconstringnullNom de l'icône
iconPositionstringrightleft, right
disabledboolfalseLien désactivé
classstring''Classes additionnelles
{% endblock %}