templates/Admin/_templates/splash.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <!-- Page title -->
  7.         <title>{% block page_title %}Untitled{% endblock %}</title>
  8.         {% block stylesheets %}
  9.             {{ encore_entry_link_tags('admin') }}
  10.         {% endblock %}
  11.     </head>
  12.     <body class="splash">
  13.         <div class="vh-100 d-flex align-items-center justify-content-center">
  14.             {% block content %}{% endblock %}
  15.         </div>
  16.         {% block scripts %}
  17.             {{ encore_entry_script_tags('admin') }}
  18.         {% endblock %}
  19.     </body>
  20. </html>