templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  7.         <meta name="description" content="" />
  8.         <meta name="author" content="" />
  9.         <meta name="mercure-hub-url" content="{{ mercure_hub_url }}" />
  10.         <title>{% block title %}Login - SB Admin Pro!{% endblock %}</title>
  11.         {# Run `composer require symfony/webpack-encore-bundle`
  12.         and uncomment the following Encore helpers to start using Symfony UX #}
  13.         {% block stylesheets %}
  14.         {#{{ encore_entry_link_tags('app') }}#}
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.         {#{{ encore_entry_script_tags('app') }}#}
  18.         {% endblock %}
  19.         <link href="{{ asset('css/styles.css') }}" rel="stylesheet" />
  20.         <link rel="icon" type="{{ asset('image/x-icon') }}" href="{{ asset('assets/img/favicon.png') }}" />
  21.         <script data-search-pseudo-elements defer
  22.             src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"
  23.             crossorigin="anonymous"></script>
  24.         <script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.28.0/feather.min.js"
  25.             crossorigin="anonymous"></script>
  26.     </head>
  27.     <body>
  28.         {% block body %}{% endblock %}
  29.     </body>
  30. </html>