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"
  6.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>{{ app_name }} - {% block title %}{% endblock %}</title>
  9.     {%- block stylesheets -%}
  10.         {{ encore_entry_link_tags('app') }}
  11.     {%- endblock -%}
  12. </head>
  13. <body>
  14. {% block body %}{% endblock %}
  15. {% block javascripts %}
  16.     {{ encore_entry_script_tags('app') }}
  17. {% endblock %}
  18. </body>
  19. </html>