{% import "_macros.html.twig" as macros %} {% import "partials/_inputs.html.twig" as inputs %} {% extends 'base.html.twig' %} {% block title %}Accueil | Projet Twig | Hotel BibliHotel {% endblock %} {% block meta_description %}Découvrez l'Hotel BibliHotel en Twig, un hôtel de luxe qui raconte l'histoire de la littérature. {% endblock %} {% block content %} {# HERO #}
Bibliothèque de l'hôtel
Une évasion littéraire

Le sommeil des
grands auteurs

{{ hotel.description }}

Découvrir nos suites
{# SECTION CHAMBRES #}
Collections

Nos chambres

{{ macros.filter_button('all', 'Tous') }} {{ macros.filter_button('Prestige', 'Prestige') }} {{ macros.filter_button('Mystère', 'Mystère') }} {{ macros.filter_button('Belle Époque', 'Belle Époque') }}
{% for chambre in chambres %}
{% include 'partials/_card_chambre.html.twig' with { chambre: chambre } %}
{% endfor %}
{% endblock %}