var/cache/dev/twig/82/82ebc489c652798f66db5d5535176029.php line 44

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\CoreExtension;
  6. use Twig\Extension\SandboxExtension;
  7. use Twig\Markup;
  8. use Twig\Sandbox\SecurityError;
  9. use Twig\Sandbox\SecurityNotAllowedTagError;
  10. use Twig\Sandbox\SecurityNotAllowedFilterError;
  11. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  12. use Twig\Source;
  13. use Twig\Template;
  14. use Twig\TemplateWrapper;
  15. /* Accueil/layoutAccueil.html.twig */
  16. class __TwigTemplate_e812ad1851551e3efd603e11a07e0de2 extends Template
  17. {
  18.     private Source $source;
  19.     /**
  20.      * @var array<string, Template>
  21.      */
  22.     private array $macros = [];
  23.     public function __construct(Environment $env)
  24.     {
  25.         parent::__construct($env);
  26.         $this->source $this->getSourceContext();
  27.         $this->parent false;
  28.         $this->blocks = [
  29.             'title' => [$this'block_title'],
  30.             'stylesheets' => [$this'block_stylesheets'],
  31.             'Header' => [$this'block_Header'],
  32.             'Content' => [$this'block_Content'],
  33.             'Footer' => [$this'block_Footer'],
  34.             'javascript' => [$this'block_javascript'],
  35.         ];
  36.     }
  37.     protected function doDisplay(array $context, array $blocks = []): iterable
  38.     {
  39.         $macros $this->macros;
  40.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  41.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""Accueil/layoutAccueil.html.twig"));
  42.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  43.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""Accueil/layoutAccueil.html.twig"));
  44.         // line 1
  45.         yield "<!DOCTYPE html>
  46. <html lang=\"fr\">
  47. <head>
  48.     <meta charset=\"utf-8\">
  49.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  50.     <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">
  51.     <meta name=\"description\" content=\"5sur5 Séjour - Partagez les aventures, imprimez les souvenirs\">
  52.     
  53.     <title>";
  54.         // line 9
  55.         yield from $this->unwrap()->yieldBlock('title'$context$blocks);
  56.         yield "</title>
  57.     
  58.     <!-- Favicon -->
  59.     <link rel=\"shortcut icon\" type=\"image/png\" href=\"";
  60.         // line 12
  61.         yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("images/Logo.png"), "html"nulltrue);
  62.         yield "\">
  63.     <link rel=\"apple-touch-icon\" href=\"";
  64.         // line 13
  65.         yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("images/Logo.png"), "html"nulltrue);
  66.         yield "\">
  67.     
  68.     <!-- Google Fonts - Inter -->
  69.     <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
  70.     <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
  71.     <link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap\" rel=\"stylesheet\">
  72.     
  73.     <!-- Bootstrap 5 CSS -->
  74.     <link href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css\" rel=\"stylesheet\">
  75.     
  76.     <!-- Bootstrap Icons -->
  77.     <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css\" rel=\"stylesheet\">
  78.     
  79.     <!-- Base Styles -->
  80.     <style>
  81.         :root {
  82.             --teal-5sur5: #41A2AA;
  83.             --teal-dark: #359BA3;
  84.             --teal-light: rgba(65, 162, 170, 0.08);
  85.             --orange-5sur5: #F56040;
  86.             --text-dark: #1A1A1A;
  87.             --text-secondary: #6B7280;
  88.             --text-muted: #9CA3AF;
  89.             --bg-white: #FFFFFF;
  90.             --bg-light: #F9FAFB;
  91.             --border-light: #E5E7EB;
  92.         }
  93.         
  94.         * {
  95.             box-sizing: border-box;
  96.         }
  97.         
  98.         html {
  99.             scroll-behavior: smooth;
  100.         }
  101.         
  102.         body {
  103.             font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  104.             color: var(--text-dark);
  105.             background: var(--bg-white);
  106.             margin: 0;
  107.             padding: 0;
  108.             -webkit-font-smoothing: antialiased;
  109.             -moz-osx-font-smoothing: grayscale;
  110.             line-height: 1.6;
  111.         }
  112.         
  113.         a {
  114.             color: var(--teal-5sur5);
  115.             text-decoration: none;
  116.             transition: color 0.2s ease;
  117.         }
  118.         
  119.         a:hover {
  120.             color: var(--teal-dark);
  121.         }
  122.         
  123.         img {
  124.             max-width: 100%;
  125.             height: auto;
  126.         }
  127.         
  128.         /* Scrollbar styling */
  129.         ::-webkit-scrollbar {
  130.             width: 8px;
  131.             height: 8px;
  132.         }
  133.         
  134.         ::-webkit-scrollbar-track {
  135.             background: var(--bg-light);
  136.         }
  137.         
  138.         ::-webkit-scrollbar-thumb {
  139.             background: var(--teal-5sur5);
  140.             border-radius: 4px;
  141.         }
  142.         
  143.         ::-webkit-scrollbar-thumb:hover {
  144.             background: var(--teal-dark);
  145.         }
  146.         
  147.         /* Focus visible */
  148.         :focus-visible {
  149.             outline: 2px solid var(--teal-5sur5);
  150.             outline-offset: 2px;
  151.         }
  152.         
  153.         /* Selection */
  154.         ::selection {
  155.             background: var(--teal-light);
  156.             color: var(--text-dark);
  157.         }
  158.     </style>
  159.     
  160.     ";
  161.         // line 107
  162.         yield from $this->unwrap()->yieldBlock('stylesheets'$context$blocks);
  163.         // line 108
  164.         yield "    
  165.     <!-- Analytics -->
  166.     ";
  167.         // line 110
  168.         yield $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\AnalyticsController::analyticsBloc", ["max" => 3]));
  169.         yield "
  170. </head>
  171. <body>
  172.     <!-- Header -->
  173.     ";
  174.         // line 115
  175.         yield from $this->unwrap()->yieldBlock('Header'$context$blocks);
  176.         // line 118
  177.         yield "    
  178.     <!-- Main Content -->
  179.     <main>
  180.         ";
  181.         // line 121
  182.         yield from $this->unwrap()->yieldBlock('Content'$context$blocks);
  183.         // line 122
  184.         yield "    </main>
  185.     
  186.     <!-- Footer -->
  187.     ";
  188.         // line 125
  189.         yield from $this->unwrap()->yieldBlock('Footer'$context$blocks);
  190.         // line 128
  191.         yield "    
  192.     <!-- Modal Login -->
  193.     ";
  194.         // line 130
  195.         yield from $this->load("Accueil/modal-login.html.twig"130)->unwrap()->yield($context);
  196.         // line 131
  197.         yield "    
  198.     <!-- Core JS -->
  199.     <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js\"></script>
  200.     
  201.     <!-- Google Analytics -->
  202.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-RY1ZZZ8KGZ\"></script>
  203.     <script>
  204.         window.dataLayer = window.dataLayer || [];
  205.         function gtag(){dataLayer.push(arguments);}
  206.         gtag('js', new Date());
  207.         gtag('config', 'G-RY1ZZZ8KGZ');
  208.     </script>
  209.     
  210.     ";
  211.         // line 144
  212.         yield from $this->unwrap()->yieldBlock('javascript'$context$blocks);
  213.         // line 145
  214.         yield "</body>
  215. </html>
  216. ";
  217.         
  218.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  219.         
  220.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  221.         yield from [];
  222.     }
  223.     // line 9
  224.     /**
  225.      * @return iterable<null|scalar|\Stringable>
  226.      */
  227.     public function block_title(array $context, array $blocks = []): iterable
  228.     {
  229.         $macros $this->macros;
  230.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  231.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  232.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  233.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""title"));
  234.         yield "5sur5 Séjour";
  235.         
  236.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  237.         
  238.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  239.         yield from [];
  240.     }
  241.     // line 107
  242.     /**
  243.      * @return iterable<null|scalar|\Stringable>
  244.      */
  245.     public function block_stylesheets(array $context, array $blocks = []): iterable
  246.     {
  247.         $macros $this->macros;
  248.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  249.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheets"));
  250.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  251.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""stylesheets"));
  252.         
  253.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  254.         
  255.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  256.         yield from [];
  257.     }
  258.     // line 115
  259.     /**
  260.      * @return iterable<null|scalar|\Stringable>
  261.      */
  262.     public function block_Header(array $context, array $blocks = []): iterable
  263.     {
  264.         $macros $this->macros;
  265.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  266.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Header"));
  267.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  268.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Header"));
  269.         // line 116
  270.         yield "        ";
  271.         yield from $this->load("Accueil/header.html.twig"116)->unwrap()->yield($context);
  272.         // line 117
  273.         yield "    ";
  274.         
  275.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  276.         
  277.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  278.         yield from [];
  279.     }
  280.     // line 121
  281.     /**
  282.      * @return iterable<null|scalar|\Stringable>
  283.      */
  284.     public function block_Content(array $context, array $blocks = []): iterable
  285.     {
  286.         $macros $this->macros;
  287.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  288.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Content"));
  289.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  290.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Content"));
  291.         
  292.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  293.         
  294.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  295.         yield from [];
  296.     }
  297.     // line 125
  298.     /**
  299.      * @return iterable<null|scalar|\Stringable>
  300.      */
  301.     public function block_Footer(array $context, array $blocks = []): iterable
  302.     {
  303.         $macros $this->macros;
  304.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  305.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Footer"));
  306.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  307.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""Footer"));
  308.         // line 126
  309.         yield "        ";
  310.         yield from $this->load("Accueil/_footer_premium.html.twig"126)->unwrap()->yield($context);
  311.         // line 127
  312.         yield "    ";
  313.         
  314.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  315.         
  316.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  317.         yield from [];
  318.     }
  319.     // line 144
  320.     /**
  321.      * @return iterable<null|scalar|\Stringable>
  322.      */
  323.     public function block_javascript(array $context, array $blocks = []): iterable
  324.     {
  325.         $macros $this->macros;
  326.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  327.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascript"));
  328.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  329.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""javascript"));
  330.         
  331.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  332.         
  333.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  334.         yield from [];
  335.     }
  336.     /**
  337.      * @codeCoverageIgnore
  338.      */
  339.     public function getTemplateName(): string
  340.     {
  341.         return "Accueil/layoutAccueil.html.twig";
  342.     }
  343.     /**
  344.      * @codeCoverageIgnore
  345.      */
  346.     public function isTraitable(): bool
  347.     {
  348.         return false;
  349.     }
  350.     /**
  351.      * @codeCoverageIgnore
  352.      */
  353.     public function getDebugInfo(): array
  354.     {
  355.         return array (  358 => 144,  347 => 127,  344 => 126,  331 => 125,  309 => 121,  298 => 117,  295 => 116,  282 => 115,  260 => 107,  237 => 9,  224 => 145,  222 => 144,  207 => 131,  205 => 130,  201 => 128,  199 => 125,  194 => 122,  192 => 121,  187 => 118,  185 => 115,  177 => 110,  173 => 108,  171 => 107,  74 => 13,  70 => 12,  64 => 9,  54 => 1,);
  356.     }
  357.     public function getSourceContext(): Source
  358.     {
  359.         return new Source("<!DOCTYPE html>
  360. <html lang=\"fr\">
  361. <head>
  362.     <meta charset=\"utf-8\">
  363.     <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  364.     <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">
  365.     <meta name=\"description\" content=\"5sur5 Séjour - Partagez les aventures, imprimez les souvenirs\">
  366.     
  367.     <title>{% block title %}5sur5 Séjour{% endblock %}</title>
  368.     
  369.     <!-- Favicon -->
  370.     <link rel=\"shortcut icon\" type=\"image/png\" href=\"{{ asset('images/Logo.png') }}\">
  371.     <link rel=\"apple-touch-icon\" href=\"{{ asset('images/Logo.png') }}\">
  372.     
  373.     <!-- Google Fonts - Inter -->
  374.     <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">
  375.     <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>
  376.     <link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap\" rel=\"stylesheet\">
  377.     
  378.     <!-- Bootstrap 5 CSS -->
  379.     <link href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css\" rel=\"stylesheet\">
  380.     
  381.     <!-- Bootstrap Icons -->
  382.     <link href=\"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css\" rel=\"stylesheet\">
  383.     
  384.     <!-- Base Styles -->
  385.     <style>
  386.         :root {
  387.             --teal-5sur5: #41A2AA;
  388.             --teal-dark: #359BA3;
  389.             --teal-light: rgba(65, 162, 170, 0.08);
  390.             --orange-5sur5: #F56040;
  391.             --text-dark: #1A1A1A;
  392.             --text-secondary: #6B7280;
  393.             --text-muted: #9CA3AF;
  394.             --bg-white: #FFFFFF;
  395.             --bg-light: #F9FAFB;
  396.             --border-light: #E5E7EB;
  397.         }
  398.         
  399.         * {
  400.             box-sizing: border-box;
  401.         }
  402.         
  403.         html {
  404.             scroll-behavior: smooth;
  405.         }
  406.         
  407.         body {
  408.             font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  409.             color: var(--text-dark);
  410.             background: var(--bg-white);
  411.             margin: 0;
  412.             padding: 0;
  413.             -webkit-font-smoothing: antialiased;
  414.             -moz-osx-font-smoothing: grayscale;
  415.             line-height: 1.6;
  416.         }
  417.         
  418.         a {
  419.             color: var(--teal-5sur5);
  420.             text-decoration: none;
  421.             transition: color 0.2s ease;
  422.         }
  423.         
  424.         a:hover {
  425.             color: var(--teal-dark);
  426.         }
  427.         
  428.         img {
  429.             max-width: 100%;
  430.             height: auto;
  431.         }
  432.         
  433.         /* Scrollbar styling */
  434.         ::-webkit-scrollbar {
  435.             width: 8px;
  436.             height: 8px;
  437.         }
  438.         
  439.         ::-webkit-scrollbar-track {
  440.             background: var(--bg-light);
  441.         }
  442.         
  443.         ::-webkit-scrollbar-thumb {
  444.             background: var(--teal-5sur5);
  445.             border-radius: 4px;
  446.         }
  447.         
  448.         ::-webkit-scrollbar-thumb:hover {
  449.             background: var(--teal-dark);
  450.         }
  451.         
  452.         /* Focus visible */
  453.         :focus-visible {
  454.             outline: 2px solid var(--teal-5sur5);
  455.             outline-offset: 2px;
  456.         }
  457.         
  458.         /* Selection */
  459.         ::selection {
  460.             background: var(--teal-light);
  461.             color: var(--text-dark);
  462.         }
  463.     </style>
  464.     
  465.     {% block stylesheets %}{% endblock %}
  466.     
  467.     <!-- Analytics -->
  468.     {{ render(controller('App\\\\Controller\\\\AnalyticsController::analyticsBloc', {'max': 3})) }}
  469. </head>
  470. <body>
  471.     <!-- Header -->
  472.     {% block Header %}
  473.         {% include 'Accueil/header.html.twig' %}
  474.     {% endblock %}
  475.     
  476.     <!-- Main Content -->
  477.     <main>
  478.         {% block Content %}{% endblock %}
  479.     </main>
  480.     
  481.     <!-- Footer -->
  482.     {% block Footer %}
  483.         {% include 'Accueil/_footer_premium.html.twig' %}
  484.     {% endblock %}
  485.     
  486.     <!-- Modal Login -->
  487.     {% include 'Accueil/modal-login.html.twig' %}
  488.     
  489.     <!-- Core JS -->
  490.     <script src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js\"></script>
  491.     
  492.     <!-- Google Analytics -->
  493.     <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-RY1ZZZ8KGZ\"></script>
  494.     <script>
  495.         window.dataLayer = window.dataLayer || [];
  496.         function gtag(){dataLayer.push(arguments);}
  497.         gtag('js', new Date());
  498.         gtag('config', 'G-RY1ZZZ8KGZ');
  499.     </script>
  500.     
  501.     {% block javascript %}{% endblock %}
  502. </body>
  503. </html>
  504. ""Accueil/layoutAccueil.html.twig""/var/www/5sur5sejour/templates/Accueil/layoutAccueil.html.twig");
  505.     }
  506. }