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">
  6. <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <link rel="shortcut icon" href="imgs/favicon.ico" type="image/x-icon" />
  9. <link rel="icon" href="imgs/marianne.png" type="image/png" />
  10. <link rel="icon" href="imgs/marianne.svg" />
  11. <link rel="icon" href="imgs/favicon-32.png" type="image/png" sizes="32x32" />
  12. <link rel="icon" href="imgs/favicon-64.png" type="image/png" sizes="64x64" />
  13. <title>{% block title %}Equipage{% endblock %}</title>
  14. {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  15. {% block stylesheets %}
  16. {% endblock %}
  17. </head>
  18. <body>
  19. {% block body %}{% endblock %}
  20. {% block javascripts %}
  21. {% endblock %}
  22. </body>
  23. </html>