templates/base.html.twig line 1

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.         <title>{% block title %}SERENITEC{% endblock %}</title>
  7.         <link href='https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css' rel='stylesheet'>
  8.         <link rel="stylesheet" type="text/css" href="https://npmcdn.com/flatpickr/dist/themes/dark.css">
  9.         {% include 'layout/styles/styles.datatable.html.twig' %}
  10.         {% include 'layout/styles/styles.bootstrap.html.twig' %}
  11.         <style>
  12.             :root {
  13.                 --custom-color: rgb(153, 202, 60);
  14.                 --custom-a-30-color: rgba(153, 202, 60, 0.3);
  15.                 --custom-a-50-color: rgba(153, 202, 60, 0.5);
  16.                 --custom-a-80-color: rgba(153, 202, 60, 0.8);
  17.             }
  18.         </style>
  19.         {{ encore_entry_link_tags('main') }}
  20.         {% block stylesheets %}{% endblock %}
  21.     </head>
  22.     <body>
  23.         {% for message in app.flashes('success') %}
  24.             <div class="alert alert-success">
  25.                 {{ message }}
  26.                 <span class="removeFlash">&#10060;</span>
  27.             </div>
  28.         {% endfor %}
  29.         {% block body %}{% endblock %}
  30.         <script src="{{ asset('bundles/app/jQuery/jquery-3.6.0.min.js') }}"></script>
  31.         <script src="{{ asset('bundles/app/bootstrap/bootstrap-5.2.0-beta1/dist/js/bootstrap.bundle.js') }}"></script>
  32.         {% include 'layout/scripts/script.datatable.html.twig' %}
  33.         {% block javascripts %}
  34.             {{ encore_entry_script_tags('main') }}
  35.         {% endblock %}
  36.     </body>
  37. </html>