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 %} - Gifted Admin Panel</title>
  7.     {# Run `composer require symfony/webpack-encore-bundle`
  8.            and uncomment the following Encore helpers to start using Symfony UX #}
  9.     {% block stylesheets %}
  10.         {#{{ encore_entry_link_tags('app') }}#}
  11.     {% endblock %}
  12.     {% block javascripts %}
  13.         {#{{ encore_entry_script_tags('app') }}#}
  14.     {% endblock %}
  15. </head>
  16. <body>
  17. {% block body %}{% endblock %}
  18. </body>
  19. </html>