templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}{% endblock %}</title>
  6.         <link rel="shortcut icon" type="image/ico" href="{{ asset('images/favicon.png') }}">
  7.         {# Run `composer require symfony/webpack-encore-bundle`
  8.            and uncomment the following Encore helpers to start using Symfony UX #}
  9.         {% block stylesheets %}
  10.             {{ encore_entry_link_tags('app') }}
  11.         {% endblock %}
  12.         {% block javascripts %}
  13.             {{ encore_entry_script_tags('app') }}
  14.         {% endblock %}
  15.     </head>
  16.     <body>
  17.         {% block body %}{% endblock %}
  18.     </body>
  19. </html>