2026-01-19 21:08:04 +01:00
<!DOCTYPE html>
2026-01-28 16:21:09 +01:00
<html lang=" {{ app .request .locale }} " class="scroll-smooth">
2026-01-19 21:08:04 +01:00
<head>
<meta charset="UTF-8">
2026-01-22 21:56:18 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2026-01-19 21:08:04 +01:00
{# --- SEO Fondamental --- #}
2026-01-22 23:02:44 +01:00
<title>
2026-02-06 14:31:24 +01:00
{% block title %} {{ 'Location Structure Gonflable & Châteaux pour vos Événements | Ludikevent' | trans }} {% endblock %}
2026-01-22 23:02:44 +01:00
</title>
2026-01-19 21:08:04 +01:00
2026-01-28 16:21:09 +01:00
{% if block ( 'description' ) is defined %}
<meta name="description" content=" {{ block ( 'description' ) | replace ( { "\n" : '' , "\r" : '' , ' ' : '' } ) | trim }} ">
2026-01-23 08:43:47 +01:00
{% endif %}
2026-01-28 16:21:09 +01:00
2026-01-22 23:25:35 +01:00
{% block canonical %}
<link rel="canonical" href=" {{ app .request .schemeAndHttpHost }} {{ app .request .pathinfo }} ">
{% endblock %}
2026-01-28 16:21:09 +01:00
2026-02-06 14:31:24 +01:00
<meta name="keywords" content=" {{ 'location structure gonflable, location chateau gonflable, location barnum, jeux exterieurs, animation anniversaire, location materiel evenementiel, parcours gonflable, location machine barbe a papa, ludikevent' | trans }} ">
2026-01-28 16:21:09 +01:00
{# --- Open Graph --- #}
2026-01-19 21:08:04 +01:00
<meta property="og:type" content="website">
<meta property="og:url" content=" {{ app .request .uri }} ">
<meta property="og:title" content=" {{ block ( 'title' ) }} ">
2026-01-23 08:43:47 +01:00
{% if block ( 'description' ) is defined %}
2026-01-28 16:21:09 +01:00
<meta property="og:description" content=" {{ block ( 'description' ) }} ">
2026-01-23 08:43:47 +01:00
{% endif %}
2026-01-19 21:08:04 +01:00
<meta property="og:image" content=" {{ absolute_url ( asset ( 'provider/images/favicon.png' ) ) }} ">
2026-02-06 14:31:24 +01:00
<meta property="article:publisher" content="https://www.facebook.com/profile.php?id=61574652399326">
2026-01-19 21:08:04 +01:00
{# --- Twitter Card --- #}
<meta name="twitter:card" content="summary">
2026-01-28 16:21:09 +01:00
<meta name="twitter:title" content=" {{ block ( 'title' ) }} ">
2026-01-19 21:08:04 +01:00
<meta name="twitter:image" content=" {{ absolute_url ( asset ( 'provider/images/favicon.png' ) ) }} ">
2026-01-28 16:21:09 +01:00
{% block extra_header %} {% endblock %}
2026-02-06 14:31:24 +01:00
{# --- Données Structurées (JSON-LD) --- #}
<script type="application/ld+json">
[
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Ludikevent",
"image": " {{ absolute_url ( asset ( 'provider/images/favicon.png' ) ) }} ",
"telephone": "+33614172447",
"email": "contact@ludikevent.fr",
"url": " {{ app .request .schemeAndHttpHost }} ",
"address": {
"@type": "PostalAddress",
"streetAddress": "6 Rue du Château",
"addressLocality": "Danizy",
"postalCode": "02800",
"addressCountry": "FR"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 49.6644,
"longitude": 3.3852
},
"sameAs": [
"https://www.facebook.com/profile.php?id=61574652399326"
],
"priceRange": "€€"
}
]
</script>
{% block jsonld %} {% endblock %}
2026-01-19 21:08:04 +01:00
2026-02-06 14:31:24 +01:00
{# --- PWA & Analytics --- #}
{% if app .environment != 'dev' %}
{{ pwa ( swAttributes = { 'nonce' : csp_nonce ( 'script' ) } ) }}
<script data-host-url="https://tools-security.esy-web.dev" nonce=" {{ csp_nonce ( 'script' ) }} " defer src="/utm_reserve.js" data-website-id="38d713c3-3923-4791-875a-dfe5f45372c3"></script>
{% else %}
<script data-host-url="https://tools-security.esy-web.dev" nonce=" {{ csp_nonce ( 'script' ) }} " defer src="/utm_reserve.js" data-website-id="3915e612-2df0-4ebe-b9e0-a171d7977d42"></script>
{% endif %}
<script nonce=" {{ csp_nonce ( 'script' ) }} " src="/ts.js"></script>
2026-01-19 21:08:04 +01:00
{{ vite_asset ( 'reserve.js' , { } ) }}
{% block stylesheets %} {% endblock %}
</head>
2026-01-22 21:56:18 +01:00
2026-01-19 21:08:04 +01:00
<body class="bg-gray-50 text-gray-900 font-sans antialiased min-h-screen flex flex-col">
2026-01-22 21:56:18 +01:00
2026-02-06 17:46:30 +01:00
{% if not is_online ( ) %}
<div class="bg-red-600 text-white text-center py-2 px-4 font-bold text-sm sticky top-0 z-[60]">
2026-02-06 18:04:13 +01:00
Votre site internet n'est actuellement pas en ligne. Aucun référencement n'est possible et aucun paiement ne sera possible. Pour demander sa mise en ligne, rendez-vous dans votre intranet pour effectuer la demande d'activation.
2026-02-06 17:46:30 +01:00
</div>
{% endif %}
2026-01-27 20:24:02 +01:00
{% if is_granted ( 'ROLE_USER' ) %}
<utm-account id=" {{ app .user .id }} " email=" {{ app .user .email }} " name=" {{ app .user .name }} {{ app .user .surname }} "></utm-account>
2026-01-22 20:15:21 +01:00
{% endif %}
2026-01-22 21:56:18 +01:00
2026-01-30 12:34:51 +01:00
{# --- MACROS --- #}
{% macro nav_link ( route_name , label_key , is_external = false ) %}
<a href=" {{ is_external ? route_name : path ( route_name ) }} "
{% if is_external %} target="_blank" {% endif %}
2026-01-30 15:32:28 +01:00
class="text-gray-700 hover:text-[#f39e36] font-medium transition-colors">
2026-01-30 12:34:51 +01:00
{{ label_key | trans }}
</a>
{% endmacro %}
{% macro mobile_nav_link ( route_name , label_key , is_external = false ) %}
<a href=" {{ is_external ? route_name : path ( route_name ) }} "
{% if is_external %} target="_blank" {% endif %}
class="block px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 rounded-xl">
{{ label_key | trans }}
</a>
{% endmacro %}
{% import _self as macros %}
2026-01-19 21:08:04 +01:00
{# --- NAVIGATION --- #}
2026-01-28 16:23:37 +01:00
<nav class="sticky top-0 z-50 bg-white/95 backdrop-blur-md border-b border-gray-100" role="navigation" aria-label=" {{ 'nav.aria_label' | trans }} ">
2026-01-27 22:43:36 +01:00
<div class="max-w-8xl mx-auto px-4 sm:px-6 lg:px-8">
2026-01-19 21:08:04 +01:00
<div class="flex justify-between h-20">
{# Logo #}
<div class="flex-shrink-0 flex items-center">
2026-01-20 11:58:29 +01:00
<a href=" {{ path ( 'reservation' ) }} " class="flex items-center gap-2 group">
2026-01-22 22:10:13 +01:00
<img src=" {{ asset ( 'provider/images/favicon.png' ) | imagine_filter ( 'logo' ) }} "
2026-01-28 16:21:09 +01:00
width="48" height="48" class="w-12 h-12 relative z-10 animate-pulse"
2026-01-22 21:56:18 +01:00
alt="Ludikevent">
2026-01-28 16:21:09 +01:00
<span class="text-2xl font-black tracking-tighter uppercase text-[#f39e36]">Ludik Event</span>
2026-01-19 21:08:04 +01:00
</a>
</div>
{# Menu Desktop #}
<div class="hidden md:flex items-center space-x-8">
2026-01-30 12:34:51 +01:00
{{ macros .nav_link ( 'reservation' , 'nav.home' ) }}
{{ macros .nav_link ( 'reservation_catalogue' , 'nav.catalogue' ) }}
{{ macros .nav_link ( 'reservation_formules' , 'nav.packages' ) }}
{{ macros .nav_link ( '/images/Catalogue.pdf' , 'nav.pdf' , true ) }}
2026-03-26 12:20:35 +01:00
{{ macros .nav_link ( 'reservation_estimate_delivery' , 'Estimer la livraison' ) }}
2026-01-30 12:34:51 +01:00
{{ macros .nav_link ( 'reservation_contact' , 'nav.contact' ) }}
2026-01-28 16:23:37 +01:00
2026-01-30 15:32:28 +01:00
<a is="flow-reserve" class="relative p-2 text-gray-600 hover:text-[#f39e36] transition-colors" aria-label="Panier">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>
<span class="absolute -top-1 -right-1 bg-red-500 text-white text-[10px] font-bold px-1.5 py-0.5 rounded-full hidden" data-count>0</span>
</a>
<a href=" {{ path ( 'reservation_search' ) }} " class="p-2 text-gray-600 hover:text-[#f39e36] transition-colors" aria-label=" {{ 'nav.search_aria' | trans }} ">
2026-01-28 16:21:09 +01:00
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
2026-01-19 21:08:04 +01:00
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
</a>
2026-01-22 21:16:29 +01:00
{% if app .user %}
<div class="flex items-center gap-4">
2026-01-23 08:43:47 +01:00
{% if is_granted ( 'ROLE_ADMIN' ) %}
<a target="_blank" href="https://intranet.ludikevent.fr/crm" class="text-xs font-black uppercase tracking-widest text-amber-800 bg-amber-50 px-3 py-1 rounded-full border border-amber-200 hover:bg-amber-100 transition-colors">
2026-01-28 16:23:37 +01:00
{{ 'nav.admin' | trans }}
2026-01-22 21:16:29 +01:00
</a>
{% endif %}
2026-01-28 16:21:09 +01:00
<a href=" {{ path ( 'gestion_contrat' ) }} " class="text-[#f39e36] flex items-center gap-2 font-bold hover:opacity-70 transition-opacity">
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/></svg>
2026-01-28 16:23:37 +01:00
{{ 'nav.my_account' | trans }}
2026-01-22 21:16:29 +01:00
</a>
2026-01-28 16:23:37 +01:00
<a href=" {{ path ( 'reservation_logout' ) }} " class="text-gray-500 hover:text-red-600 transition-colors" title=" {{ 'nav.logout' | trans }} " aria-label=" {{ 'nav.logout' | trans }} ">
2026-01-28 16:21:09 +01:00
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"/></svg>
2026-01-22 21:16:29 +01:00
</a>
</div>
{% else %}
2026-01-23 14:45:32 +01:00
<a href=" {{ path ( 'reservation_login' ) }} " class="text-[#f39e36] font-bold transition-colors flex items-center gap-2">
2026-01-28 16:21:09 +01:00
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1"/></svg>
2026-01-28 16:23:37 +01:00
{{ 'nav.login' | trans }}
2026-01-22 21:16:29 +01:00
</a>
{% endif %}
2026-01-19 21:08:04 +01:00
</div>
{# Bouton Menu Mobile #}
<div class="md:hidden flex items-center">
2026-01-28 16:23:37 +01:00
<button id="menu-button" type="button" class="text-gray-700 p-2 focus:outline-none" aria-expanded="false" aria-controls="mobile-menu" aria-label=" {{ 'nav.mobile_open' | trans }} ">
<svg class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" /></svg>
2026-01-19 21:08:04 +01:00
</button>
</div>
</div>
</div>
2026-01-30 09:13:01 +01:00
{# Menu Mobile #}
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 shadow-xl">
<div class="px-4 pt-2 pb-6 space-y-2">
2026-01-30 12:34:51 +01:00
{{ macros .mobile_nav_link ( 'reservation' , 'Accueil' ) }}
{{ macros .mobile_nav_link ( 'reservation_catalogue' , 'Nos structures' ) }}
{{ macros .mobile_nav_link ( 'reservation_formules' , 'Nos Formules' ) }}
2026-03-19 14:10:19 +01:00
{{ macros .mobile_nav_link ( '/images/Catalogue.pdf' , 'Catalogue' , true ) }}
2026-03-26 12:20:35 +01:00
{{ macros .mobile_nav_link ( 'reservation_estimate_delivery' , 'Estimer la livraison' ) }}
2026-01-30 12:34:51 +01:00
{{ macros .mobile_nav_link ( 'reservation_search' , 'Rechercher' ) }}
2026-01-30 15:32:28 +01:00
<a is="flow-reserve" class="block px-3 py-2 text-base font-medium text-gray-700 hover:bg-gray-50 rounded-xl flex items-center justify-between">
<span>Panier</span>
<span class="bg-red-500 text-white text-xs font-bold px-2 py-0.5 rounded-full hidden" data-count>0</span>
</a>
2026-01-30 09:13:01 +01:00
<div class="pt-4 border-t border-gray-50">
<a href="tel:0614172447" class="block px-3 py-3 text-center bg-blue-600 text-white rounded-xl font-bold">
{{ 'Appeler le' | trans }} 06 14 17 24 47
</a>
</div>
</div>
</div>
2026-01-19 21:08:04 +01:00
</nav>
2026-01-22 21:56:18 +01:00
{# --- MESSAGES FLASH --- #}
2026-01-20 13:22:01 +01:00
{% for label , messages in app .flashes %}
2026-01-22 21:56:18 +01:00
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mt-4" role="alert">
2026-01-20 13:22:01 +01:00
{% for message in messages %}
2026-01-30 12:34:51 +01:00
{% set border_class = label == 'error' ? 'border-red-200 bg-red-50 text-red-800' : ( label == 'success' ? 'border-green-200 bg-green-50 text-green-800' : 'border-blue-200 bg-blue-50 text-blue-800' ) %}
<div class="flex items-center justify-between p-4 rounded-2xl shadow-lg border {{ border_class }} ">
2026-01-20 13:22:01 +01:00
<div class="flex items-center gap-3">
2026-01-28 16:21:09 +01:00
<p class="text-sm font-bold uppercase italic"> {{ message | trans }} </p>
2026-01-20 13:22:01 +01:00
</div>
</div>
{% endfor %}
</div>
{% endfor %}
2026-01-19 21:08:04 +01:00
2026-01-22 21:56:18 +01:00
<main class="flex-grow" id="main-content" role="main">
2026-01-30 15:32:28 +01:00
{# --- DATE SELECTION BLOCK --- #}
{% block date_selection %}
2026-01-30 18:27:30 +01:00
<div class="bg-[#f39e36] text-white py-4 px-4 sticky top-20 z-40 border-b border-white/10 shadow-xl">
2026-01-30 15:32:28 +01:00
<div class="max-w-7xl mx-auto flex flex-col sm:flex-row items-center justify-between gap-4">
<div class="flex items-center gap-3">
<div class="p-2 bg-white/50 rounded-lg">
<svg class="w-5 h-5 text-[#f39e36]" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 00-2 2z"></path></svg>
</div>
<div>
<p class="text-[10px] uppercase tracking-widest text-white font-bold">Période de location</p>
<p class="text-sm font-bold italic" id="header-date-display">
<span class="opacity-70">Aucune date sélectionnée</span>
</p>
</div>
</div>
<flow-datepicker>
<button class="w-full sm:w-auto px-6 py-2 bg-[#fc0e50] hover:bg-white hover:text-slate-900 text-white rounded-xl font-bold uppercase text-xs tracking-widest transition-all">
Choisir mes dates
</button>
</flow-datepicker>
</div>
</div>
{% endblock %}
2026-01-19 21:08:04 +01:00
{% block body %} {% endblock %}
</main>
{# --- PIED DE PAGE --- #}
2026-01-22 21:56:18 +01:00
<footer class="bg-white border-t border-gray-100 py-10 mt-auto" role="contentinfo">
2026-01-19 21:08:04 +01:00
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center gap-8">
<div class="text-center md:text-left">
2026-01-22 21:56:18 +01:00
<p class="text-sm text-gray-700">
2026-01-23 14:45:32 +01:00
© {{ "now" | date ( "Y" ) }} <span class="font-bold text-[#f39e36]">Ludikevent</span>.
2026-01-28 16:23:37 +01:00
{{ 'footer.rights' | trans }}
2026-01-19 21:08:04 +01:00
</p>
2026-01-28 16:23:37 +01:00
<p class="text-xs text-gray-600 mt-1"> {{ 'footer.tagline' | trans }} </p>
2026-01-19 21:08:04 +01:00
</div>
2026-01-22 21:56:18 +01:00
<div class="flex flex-wrap justify-center gap-x-6 gap-y-2 text-xs text-gray-700 font-semibold">
2026-01-28 16:23:37 +01:00
<a href=" {{ path ( 'reservation_mentions-legal' ) }} " class="hover:text-blue-700 transition-colors"> {{ 'footer.legal' | trans }} </a>
<a href=" {{ path ( 'reservation_cgv' ) }} " class="hover:text-blue-700 transition-colors"> {{ 'footer.cgv' | trans }} </a>
<a href=" {{ path ( 'reservation_rgpd' ) }} " class="hover:text-blue-700 transition-colors"> {{ 'footer.rgpd' | trans }} </a>
<a href=" {{ path ( 'reservation_cookies' ) }} " class="hover:text-blue-700 transition-colors"> {{ 'footer.cookies' | trans }} </a>
2026-01-19 21:08:04 +01:00
</div>
</div>
</div>
</footer>
2026-01-27 20:24:02 +01:00
<cookie-banner></cookie-banner>
2026-01-19 21:08:04 +01:00
{% block javascripts %} {% endblock %}
</body>
2026-01-30 15:32:28 +01:00
</html>