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 %}Welcome!{% endblock %}</title>
  6.         <link rel="apple-touch-icon" sizes="180x180" href="{{ paths['images.favicon'] }}apple-touch-icon.png">
  7.         <link rel="icon" type="image/png" sizes="32x32" href="{{ paths['images.favicon'] }}favicon-32x32.png">
  8.         <link rel="icon" type="image/png" sizes="16x16" href="{{ paths['images.favicon'] }}favicon-16x16.png">
  9.         <link rel="manifest" href="{{ paths['images.favicon'] }}site.webmanifest">
  10.         <link rel="mask-icon" href="{{ paths['images.favicon'] }}safari-pinned-tab.svg" color="#5bbad5">
  11.         <meta name="msapplication-TileColor" content="#da532c">
  12.         <meta name="theme-color" content="#ffffff">
  13.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  14.         {% block stylesheets %}
  15.             {{ encore_entry_link_tags('app') }}
  16.         {% endblock %}
  17.         {% block javascripts %}
  18.             {{ encore_entry_script_tags('app') }}
  19.         {% endblock %}
  20.     </head>
  21.     <body>
  22.         {% block body %}{% endblock %}
  23.     </body>
  24. </html>