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">
  6.         <meta name="robots" content="noindex,nofollow,noarchive,nosnippet,noodp,notranslate,noimageindex"/>
  7.         <title>{% block title %}ROSH !{% endblock %}</title>
  8.         {{ encore_entry_link_tags('css_app') }}
  9.         {% block stylesheets %}
  10.         {% endblock %}
  11.         {{ encore_entry_script_tags('js_app') }}
  12.     </head>
  13.     <body>
  14.     <main class="is-fullheight main">
  15.         {% block body %}
  16.         {% endblock %}
  17.     </main>
  18.     {% block javascripts %}
  19.     {% endblock %}
  20.     {% include 'flash_bag.html.twig' %}
  21.     </body>
  22. </html>