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 %}Welcome!{% endblock %}</title>
  6.         <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  7.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  8.         <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>">
  9.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.             <style>
  13.                 .accordion-button{
  14.                     display: none !important;
  15.                 }
  16.                 .collapse:not(.show){
  17.                     display: block !important; 
  18.                 }
  19.                 a{
  20.                     text-decoration: none;
  21.                 }
  22.             </style>
  23.         {% endblock %}
  24.         {% block javascripts %}
  25.             {{ encore_entry_script_tags('app') }}
  26.         {% endblock %}
  27.     </head>
  28.     <body>
  29.         <nav class="navbar navbar-dark ps-0 p-3 bg-dark justify-content-between">
  30.             <a class="navbar-brand ms-4" href="/"><i class="fa-solid fa-gears me-3 fa-xl"></i><h4 class="d-inline">Configuration des flux Ypareo - Moodle</h4></a>
  31.             {% if app.user %}
  32.             <div class="nav-item me-4">
  33.                 <a href="{{path('app_logout')}}" class="text-white"><i class="fa-solid fa-arrow-right-from-bracket p-2"></i>Déconnexion</a>
  34.             </div>
  35.             {% endif %}
  36.           </nav>
  37.         {% block body %}{% endblock %}
  38.     </body>
  39. </html>
  40.     {# <div class="d-flex bg-dark p-2 justify-content-between">
  41.         
  42.         </div> #}