templates/Accueil/layoutAccueilParents.html.twig line 78

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="description" content="5sur5 Séjour - Espace Parents">
  8.     
  9.     <title>{% block title %}5sur5 Séjour — Espace Parents{% endblock %}</title>
  10.     
  11.     <!-- Favicon -->
  12.     <link rel="shortcut icon" type="image/png" href="{{ asset('images/Logo.png') }}">
  13.     
  14.     <!-- Google Fonts -->
  15.     <link rel="preconnect" href="https://fonts.googleapis.com">
  16.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  17.     <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  18.     
  19.     <!-- Bootstrap 5 CSS -->
  20.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
  21.     
  22.     <!-- Bootstrap Icons -->
  23.     <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css" rel="stylesheet">
  24.     
  25.     <!-- Base Styles -->
  26.     <style>
  27.         :root {
  28.             --teal-5sur5: #41A2AA;
  29.             --teal-dark: #359BA3;
  30.             --teal-light: rgba(65, 162, 170, 0.08);
  31.             --orange-5sur5: #F56040;
  32.             --text-dark: #1A1A1A;
  33.             --text-secondary: #6B7280;
  34.             --text-muted: #9CA3AF;
  35.             --bg-white: #FFFFFF;
  36.             --bg-light: #F9FAFB;
  37.             --border-light: #E5E7EB;
  38.         }
  39.         
  40.         * {
  41.             box-sizing: border-box;
  42.         }
  43.         
  44.         html {
  45.             scroll-behavior: smooth;
  46.         }
  47.         
  48.         body {
  49.             font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  50.             color: var(--text-dark);
  51.             background: var(--bg-white);
  52.             margin: 0;
  53.             padding: 0;
  54.             -webkit-font-smoothing: antialiased;
  55.             -moz-osx-font-smoothing: grayscale;
  56.             line-height: 1.6;
  57.         }
  58.         
  59.         a {
  60.             color: var(--teal-5sur5);
  61.             text-decoration: none;
  62.             transition: color 0.2s ease;
  63.         }
  64.         
  65.         a:hover {
  66.             color: var(--teal-dark);
  67.         }
  68.         
  69.         img {
  70.             max-width: 100%;
  71.             height: auto;
  72.         }
  73.     </style>
  74.     
  75.     {% block stylesheets %}{% endblock %}
  76.     
  77.     <!-- Analytics -->
  78.     {{ render(controller('App\\Controller\\AnalyticsController::analyticsBloc', {'max': 3})) }}
  79. </head>
  80. <body>
  81.     <!-- Header -->
  82.     {% block Header %}
  83.         {% include 'Accueil/header.html.twig' %}
  84.     {% endblock %}
  85.     
  86.     <!-- Main Content -->
  87.     <main>
  88.         {% block Content %}{% endblock %}
  89.     </main>
  90.     
  91.     <!-- Footer -->
  92.     {% block Footer %}
  93.         {% include 'Accueil/_footer_premium.html.twig' %}
  94.     {% endblock %}
  95.     
  96.     <!-- Core JS -->
  97.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
  98.     
  99.     <!-- Google Analytics -->
  100.     <script async src="https://www.googletagmanager.com/gtag/js?id=G-RY1ZZZ8KGZ"></script>
  101.     <script>
  102.         window.dataLayer = window.dataLayer || [];
  103.         function gtag(){dataLayer.push(arguments);}
  104.         gtag('js', new Date());
  105.         gtag('config', 'G-RY1ZZZ8KGZ');
  106.     </script>
  107.     
  108.     {% block javascript %}{% endblock %}
  109. </body>
  110. </html>