templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}
  7.                 Welcome!
  8.             {% endblock %}
  9.         </title>
  10.         <link
  11.         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>">
  12.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  13.         {% block stylesheets %}
  14.             <link href="{{ asset('css/bootstrap.min.css')}}" rel="stylesheet"/>
  15.             <style>
  16.                 .table-site{margin:1em auto;max-width:1000px;width:95%}
  17.             </style>
  18.         {% endblock %}
  19.         {% block javascripts %}
  20.             <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
  21.         {% endblock %}
  22.     </head>
  23.     <body>
  24.         {% block navbar %}
  25.             <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
  26.                 <div class="container-fluid">
  27.                     <div class="collapse navbar-collapse" id="navbarColor01">
  28.                         <ul class="navbar-nav me-auto">
  29.                             <li class="nav-item">
  30.                                 <a class="nav-link active" href="{{ path("app_home") }}">
  31.                                     Accueil
  32.                                 </a>
  33.                             </li>
  34.                             <li class="nav-item">
  35.                                 <a class="nav-link" href="{{ path("app_factures") }}">
  36.                                     Factures
  37.                                 </a>
  38.                             </li>
  39.                             <li class="nav-item">
  40.                                 <a class="nav-link" href="{{ path("app_logout") }}">
  41.                                     Déconnexion
  42.                                 </a>
  43.                             </li>
  44.                         </ul>
  45.                     </div>
  46.                     <a class="navbar-brand" href="{{ path("app_home") }}">
  47.                         {{app.session.get('nom')}}
  48.                     </a>
  49.                 </div>
  50.             </nav>
  51.         {% endblock %}
  52.         {% block body %}
  53.         {% endblock %}
  54.     </body>
  55. </html>