templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <meta name="description" content="{% block meta_description %}Fatness for Service - Corporate Health & Fitness Challenges{% endblock %}">
  7.         <title>{% block title %}{{ page_title|default('Welcome!') }}{% endblock %}</title>
  8.         
  9.         <!-- Favicon -->
  10.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  11.         
  12.         <!-- Google Fonts -->
  13.         <link rel="preconnect" href="https://fonts.googleapis.com">
  14.         <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  15.         <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap" rel="stylesheet">
  16.         
  17.         <!-- Bootstrap Icons (CDN) -->
  18.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
  19.         <!-- Stylesheets -->
  20.         {% block stylesheets %}
  21.             {{ encore_entry_link_tags('app') }}
  22.         {% endblock %}
  23.         <!-- JavaScript -->
  24.         {% block javascripts %}
  25.             {{ encore_entry_script_tags('app') }}
  26.         {% endblock %}
  27.     </head>
  28.     <body class="min-vh-100 d-flex flex-column">
  29.         {% include 'partials/header.html.twig' %}
  30.         
  31.         <main class="flex-grow-1">
  32.             <div class="container mt-3">
  33.                 {% for label, messages in app.flashes %}
  34.                     {% for message in messages %}
  35.                         <div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
  36.                             {{ message }}
  37.                             <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  38.                         </div>
  39.                     {% endfor %}
  40.                 {% endfor %}
  41.             </div>
  42.             
  43.             {% block body %}{% endblock %}
  44.         </main>
  45.         
  46.         {% include 'partials/footer.html.twig' %}
  47.     </body>
  48. </html>