templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Acti protection {% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <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>">
  8.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  9.             <!-- Bootstrap 5 CSS -->
  10.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
  11.     <!-- Font‑Awesome (icons) -->
  12.     <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet">
  13.     <!-- Police Google – Poppins -->
  14.     <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
  15.     {% block stylesheets %}
  16.         <link href="{{asset('css/style.css')}}" rel="stylesheet">
  17.     {% endblock %}
  18.         {% block javascripts %}
  19.             {{ encore_entry_script_tags('app') }}
  20.         {% endblock %}
  21.     </head>
  22.     <body>
  23.         {% block body %}{% endblock %}
  24.         <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
  25.     </body>
  26. </html>