templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5.         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
  6.         <meta name="mobile-web-app-capable" content="yes" />
  7.         <link rel="manifest" href="/manifest.json" />
  8.         <link rel="icon" type="image/png" href="/favicon.png" />
  9.         <title>{% block title %}Welcome!{% endblock %}</title>
  10.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  11.         {% block stylesheets %}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.         {% block javascripts %}
  15.             {{ encore_entry_script_tags('app') }}
  16.         {% endblock %}
  17.     </head>
  18.     <body>
  19.         {% block body %}{% endblock %}
  20.     </body>
  21. </html>