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 http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
  7.         <title>Esc'APPART - {% block title %}{% endblock %}</title>
  8.         <link rel="icon" type="image/x-icon" href="{{ asset('build/images/favicon.png') }}" />
  9.         {% block stylesheets %}{% endblock %}
  10.     </head>
  11.     <body class="{% block body_class %}{% endblock %}">
  12.         
  13.         {% block body %}{% endblock %}
  14.         
  15.         {% block javascripts %}{% endblock %}
  16.     </body> 
  17. </html>