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, shrink-to-fit=no">
  6.         <link rel="icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
  7.         <title id="turbo-title">
  8.             {% block title %}{% endblock %}
  9.         </title>
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.             {{ encore_entry_link_tags('fontawesome') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.         {% endblock %}
  17.     </head>
  18.     <body {{ stimulus_controller('turbo') }} >
  19.             <turbo-frame class="min-vh-100 d-flex flex-column" id="body" data-turbo-action="advance">
  20.                 {% include 'include/_navbar.html.twig' %}
  21.                 {{ component('toaster') }}
  22.                 {{ apy_breadcrumb_trail_render() }}
  23.                 <main class="mb-5">
  24.                     {% block body %}{% endblock %}
  25.                 </main>
  26.                 {% include 'include/_footer.html.twig' %}
  27.             </turbo-frame>
  28.             {{ component('player') }}
  29.     </body>
  30. </html>