{% extends 'base.html.twig' %} {% block title %}Landing Footer - Design System - Bubul{% endblock %} {% block body %}
{% include '_atoms/icon/icon.html.twig' with { name: 'chevron-left', size: 'sm', color: 'gray' } %}
Organisme /

Landing Footer

Pied de page avec logo, tagline et liens

{# ===== EXPLICATION ===== #}
{% include '_atoms/icon/icon.html.twig' with { name: 'home', size: 'lg', color: 'white' } %}

Footer Landing

Dark

Pied de page sombre (bg-gray-900) avec logo, tagline, liens de navigation et mentions legales. Design minimaliste et responsive.

3

Colonnes

4

Liens nav

3

Liens legaux

gray-900

Background

{# ===== UTILISATION ===== #}

Utilisation

Exemple de code Twig

{% verbatim %}{% include '_organisms/landing/footer.html.twig' only %}

{# Avec liens personnalisés #}
{% include '_organisms/landing/footer.html.twig' with {
    tagline: 'Tagline personnalisée',
    links: [
        { label: 'Lien 1', href: '#link1' },
        { label: 'Lien 2', href: '#link2' }
    ]
} only %}{% endverbatim %}
{# ===== DEMO ===== #}

Demo

Apercu du footer

{% include '_organisms/landing/footer.html.twig' only %}
{# ===== STRUCTURE ===== #}

Structure

Organisation du footer

Section Principale

  • Logo + Tagline (colonne gauche)
  • Colonne vide (espacement)
  • Liens navigation (colonne droite)

Section Bottom

  • Copyright (gauche)
  • Liens legaux (droite)
{# ===== PARAMETRES ===== #}

Parametres

Options de configuration

Parametre Type Defaut Description
tagline string 'Bubul au service...' Texte sous le logo
links array [4 liens] Array de {label, href}
class string '' Classes CSS additionnelles
{% endblock %}