templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         {% block viewport %}<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">{% endblock %}
  6.         <title>Vents et marĂ©es</title>
  7.         <link rel="icon" type="image/png" href="{{ asset('favicon.png') }}">
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('app') }}
  10.         {% endblock %}
  11.     </head>
  12.     <body class="{% block bodyclass %}{% endblock %}">
  13.         {#% block navbar %}
  14.             {% include 'navbar.html.twig' %}
  15.         {% endblock %#}
  16.         {% block body %}{% endblock %}
  17.         {% block javascripts %}
  18.             {{ encore_entry_script_tags('app') }}
  19.             {{ encore_entry_script_tags('global') }}
  20.         {% endblock %}
  21.     </body>
  22. </html>