templates/baseFront.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta content="width=device-width, initial-scale=1.0" name="viewport">
  6.         <title>Home</title>
  7.         <meta name="description" content="">
  8.         <meta name="keywords" content="">
  9.         {{ encore_entry_link_tags('appFront') }}
  10.         {% block stylesheets %}
  11.         {% endblock %}
  12.     </head>
  13.     <body>
  14.         {% include 'front/common/navbar.html.twig' %}
  15.         
  16.         {% block body %}{% endblock %}
  17.         {% include 'front/common/footer.html.twig' %}
  18.     </body>
  19.     {% block javascripts %}
  20.         {{ encore_entry_script_tags('appFront') }}
  21.     {% endblock %}
  22. </html>