templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="flex w-full h-full ">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}E-paddleShop App{% endblock %}</title>
  6.         {# Run `composer require symfony/webpack-encore-bundle`
  7.            and uncomment the following Encore helpers to start using Symfony UX #}
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.     </head>
  12.     <body style="height: min-content;" class="my-auto w-full">
  13.         {% block body %}
  14.             <div id="app">Chargement ...</div>
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ encore_entry_script_tags('app') }}
  18.         {% endblock %}
  19.     </body>
  20. </html>