templates/base.html.twig line 21

  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, shrink-to-fit=no">
  6.         <title>
  7.             {% block title %}Welcome!
  8.             {% endblock %}
  9.         </title>
  10.         <link
  11.         rel="icon" href="{{asset('assets/images/icon.webp')}}"/>
  12.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  13.         {% block stylesheets %}
  14.             {{ encore_entry_link_tags('app') }}
  15.         {% endblock %}
  16.         <link rel="stylesheet" type="text/css" href="{{asset('assets/styles/print.css')}}" media="print">
  17.     </head>
  18.     <body class="d-flex flex-column flex-lg-row flew-lg-nowrap min-vh h-100 bg-page body-base">
  19.         {% include "partials/_sidebar.html.twig" %}
  20.         <div class="flex-fill  min-vh d-flex flex-column">
  21.             <main class="flex-fill px-3 py-4 px-lg-5 py-lg-5 ">
  22.                 <div class="d-flex flex-column flex-lg-row gap-3 justify-content-between align-items-center  mb-4 ">
  23.                     <h1 class="fw-semibold fs-2 text-center text-lg-start"> {% block pageTitle %}{% endblock %}
  24.                         </h1>
  25.                         <div>
  26.                             {% block pageActions %}{% endblock %}
  27.                         </div>
  28.                     </div>
  29.                     {% block body %}{% endblock %}
  30.                 </main>
  31.                 {% include "partials/_footer-dashboard.html.twig" %}
  32.             </div>
  33.             {% include "partials/_toast.html.twig" %}
  34.             <!-- JavaScript files-->
  35.             <script type="text/javascript" src="https://cdn.datatables.net/v/bs5/jq-3.6.0/dt-1.13.1/datatables.min.js"></script>
  36.             <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.6/umd/popper.min.js" integrity="sha512-6UofPqm0QupIL0kzS/UIzekR73/luZdC6i/kXDbWnLOJoqwklBK6519iUnShaYceJ0y4FaiPtX/hRnV/X/xlUQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  37.             {% block javascripts %}
  38.                 {{ encore_entry_script_tags('app') }}
  39.             {% endblock %}
  40.         </body>
  41.     </html>