templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <meta name="robots" content="noindex">
  7.         <title>{% block title %}Quelle formation choisir ?{% endblock %}</title>
  8.         <link rel="manifest" href="{{ asset('build/images/site.webmanifest') }}">
  9.         {% block stylesheets %}
  10.             {{ encore_entry_link_tags('app') }}
  11.         {% endblock %}
  12.         {% block javascripts %}
  13.             {{ encore_entry_script_tags('app') }}
  14.         {% endblock %}
  15.     </head>
  16.     <body>
  17.         <header class="container-fluid mb-2 px-4 py-2">
  18.             <div class="row">
  19.                 <div class="col text-center">
  20.                     <h1>Quelle formation choisir ?</h1>
  21.                 </div>
  22.             </div>
  23.         </header>
  24.         <div class="container pt-3 mt-2 mb-2">
  25.             {% block body %}
  26.             {% endblock %}
  27.         </div>
  28.     </body>
  29. </html>