templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta content="width=device-width, initial-scale=1.0" name="viewport">
  6.         <meta content="" name="keywords">
  7.         <meta content="" name="description">
  8.         <title>{% block title %}Bien venue!{% endblock %}</title>
  9.         <link href="{{ absolute_url('/favicon.png')}}" rel="icon">
  10.         <link rel="preconnect" href="https://fonts.googleapis.com">
  11.         <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12.         <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>">
  13.         <link href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Inter:wght@700;800&display=swap" rel="stylesheet">
  14.         <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
  15.         <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css" rel="stylesheet">
  16.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  17.         {% block stylesheets %}
  18.             {{ encore_entry_link_tags('app') }}
  19.             {{ encore_entry_link_tags('notyf') }}
  20.         {% endblock %}
  21.         {% block javascripts %}
  22.             {{ encore_entry_script_tags('app') }}
  23.             {{ encore_entry_script_tags('notyf') }}
  24.         {% endblock %}
  25.     </head>
  26.     <body>
  27.         <div class="container-xxl bg-white p-0">
  28.             <!-- Spinner Start -->
  29.             <div id="spinner" class="show bg-white position-fixed translate-middle w-100 vh-100 top-50 start-50 d-flex align-items-center justify-content-center">
  30.                 <div class="spinner-border text-primary" style="width: 3rem; height: 3rem;" role="status">
  31.                     <span class="sr-only">Loading...</span>
  32.                 </div>
  33.             </div>
  34.             <!-- Spinner End -->
  35.             <!-- Navbar Start -->
  36.             {{ include('partials/frotend/_header.html.twig') }}
  37.              {{ include('partials/frotend/_navbar.html.twig') }}
  38.             <!-- Navbar End -->
  39.             <!-- flash message -->
  40.             {% for message in app.flashes('success')  %}
  41.                 <div  id="notyf-message" class="success"> {{ message }} </div>
  42.             {% endfor %}
  43.             <!-- flash message  End -->
  44.             {% block body %}
  45.             {% endblock %}
  46.             <!-- Testimonial End -->
  47.             {{ include('partials/frotend/_footer.html.twig') }}
  48.             <!-- Footer Start -->
  49.         </div>
  50.     </body>
  51. </html>