{% extends 'base.html.twig' %} {% block title %}Skeleton - Design System - Bubul{% endblock %} {% block body %}
{% verbatim %}{# Skeleton texte #}
{% include '_atoms/skeleton/skeleton.html.twig' with {
variant: 'text',
width: '3/4'
} %}
{# Skeleton avatar #}
{% include '_atoms/skeleton/skeleton.html.twig' with {
variant: 'avatar'
} %}
{# Skeleton paragraphe (3 lignes) #}
{% include '_atoms/skeleton/skeleton.html.twig' with {
variant: 'paragraph',
lines: 3
} %}{% endverbatim %}
Fichier : templates/_atoms/skeleton/skeleton.html.twig
Paramètre : variant
text (défaut)
title
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'title' } %}avatar (+ avatar-sm, avatar-lg)
button
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'button' } %}input
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'input' } %}thumbnail
card
Paramètre : lines
2 lignes
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'paragraph', lines: 2 } %}3 lignes
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'paragraph', lines: 3 } %}5 lignes
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'paragraph', lines: 5 } %}Paramètre : width
Paramètre : animation
pulse (défaut)
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'text', animation: 'pulse' } %}wave (shimmer)
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'text', animation: 'wave' } %}none (statique)
{% include '_atoms/skeleton/skeleton.html.twig' with { variant: 'text', animation: 'none' } %}Carte utilisateur
Article / Post
Liste d'éléments
Formulaire
| Paramètre | Type | Défaut | Description |
|---|---|---|---|
variant | string | 'text' | text, title, avatar, thumbnail, button, card, paragraph, input |
width | string | 'full' | full, 3/4, 2/3, 1/2, 1/3, 1/4 ou valeur CSS |
height | string | null | Hauteur personnalisée (CSS) |
lines | number | 1 | Nombre de lignes (paragraph) |
rounded | string | 'md' | none, sm, md, lg, xl, full |
animation | string | 'pulse' | pulse, wave, none |