templates/reset_password/base-reset.html.twig line 1

Open in your IDE?
  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="robots" content="noindex, nofollow, noarchive, nosnippet, noodp, noimageindex, notranslate, nocache" />
  7.         <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  8.         
  9.         {% block head_favicon %}
  10.             <link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⬛</text></svg>">
  11.         {% endblock %}
  12.         <title>{% block title %}Welcome!{% endblock %}</title>
  13.         
  14.         {% block stylesheets %}
  15.             <link rel="stylesheet" href="{{ asset('app.css', constant('EasyCorp\\Bundle\\EasyAdminBundle\\Asset\\AssetPackage::PACKAGE_NAME')) }}">
  16.             {{ encore_entry_link_tags('base') }}
  17.             {{ encore_entry_link_tags('login') }}
  18.         {% endblock %}
  19.         {% block javascripts %}
  20.             <script src="{{ asset('app.js', constant('EasyCorp\\Bundle\\EasyAdminBundle\\Asset\\AssetPackage::PACKAGE_NAME')) }}"></script>
  21.         {% endblock %}
  22.     </head>
  23.     <body class="ea">
  24.         <div class="login-wrapper">
  25.             <header class="main-header">
  26.                 <div id="header-logo">
  27.                     <div class="logo logo-long">
  28.                         {% if page_title %}
  29.                             {% if dashboard_route is defined %}
  30.                                 <a class="logo {{ page_title|length > 14 ? 'logo-long' }}" title="{{ page_title|striptags }}" href="{{ dashboard_route }}">
  31.                                     <h1>{{ page_title|raw }}</h1>
  32.                                 </a>
  33.                             {% else %}
  34.                                 <div class="logo {{ page_title|length > 14 ? 'logo-long' }}">
  35.                                     <h1>{{ page_title|raw }}</h1>
  36.                                 </div>
  37.                             {% endif %}
  38.                         {% endif %}
  39.                     </div>
  40.                 </div>
  41.             </header>
  42.             <section class="content">
  43.                 {% block body %}{% endblock %}
  44.             </section>
  45.         </div>
  46.     </body>
  47. </html>