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.         <meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline';">
  10.         <title>{% block title %}Welcome!{% endblock %}</title>
  11.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  12.         {% block stylesheets %}
  13.             {{ encore_entry_link_tags('app') }}
  14.         {% endblock %}
  15.         {% block javascripts %}
  16.             {{ encore_entry_script_tags('app') }}
  17.         {% endblock %}
  18.     </head>
  19.     <body>
  20.         {% block body %}{% endblock %}
  21.     </body>
  22. </html>