vendor/easycorp/easyadmin-bundle/src/Resources/views/page/login_minimal.html.twig line 1

Open in your IDE?
  1. {# This is a template used internally by EasyAdmin. Don't use it
  2.    directly in your applications. Instead, use the 'login.html.twig' template #}
  3. {% trans_default_domain translation_domain ?? 'messages' %}
  4. <!DOCTYPE html>
  5. <html>
  6.     <head>
  7.         <meta charset="utf-8">
  8.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  9.         <meta name="robots" content="noindex, nofollow, noarchive, nosnippet, noodp, noimageindex, notranslate, nocache" />
  10.         <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  11.         <meta name="generator" content="EasyAdmin" />
  12.         <title>{{ block('page_title')|striptags|raw }}</title>
  13.         {% block head_stylesheets %}
  14.             <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">
  15.         {% endblock %}
  16.         {% block head_javascript %}
  17.             <script src="{{ asset('bundles/easyadmin/app.js') }}"></script>
  18.         {% endblock head_javascript %}
  19.     </head>
  20.     <body id="{% block body_id %}{% endblock %}" class="ea {% block body_class %}{% endblock %}">
  21.         {% block wrapper_wrapper %}{% endblock wrapper_wrapper %}
  22.     </body>
  23. </html>