templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>{% block title %}Welcome!{% endblock %}</title>
  7.      <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
  8. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  9. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  10. <link rel="manifest" href="/site.webmanifest">
  11.     {% block stylesheets %}
  12.         {{ encore_entry_link_tags('app') }}
  13.     {% endblock %}
  14. </head>
  15. <body>
  16. {% block body %}{% endblock %}
  17. {% block javascripts %}
  18.     {{ encore_entry_script_tags('app') }}
  19. {% endblock %}
  20. </body>
  21. </html>