vendor/symfony/twig-bundle/Resources/views/layout.html.twig line 1

Open in your IDE?
  1. {% deprecated 'The template "' ~ _self ~'" is deprecated since Symfony 4.4, will be removed in 5.0.' %}
  2. {% block before_html %}{% endblock %}
  3. <!DOCTYPE html>
  4. <html>
  5.     <head>
  6.         <meta charset="{{ _charset }}" />
  7.         <meta name="robots" content="noindex,nofollow" />
  8.         <meta name="viewport" content="width=device-width,initial-scale=1" />
  9.         <title>{% block title %}{% endblock %}</title>
  10.         <link rel="icon" type="image/png" href="{{ include('@Twig/images/favicon.png.base64') }}">
  11.         <style>{{ include('@Twig/exception.css.twig') }}</style>
  12.         {% block head %}{% endblock %}
  13.     </head>
  14.     <body>
  15.         <header>
  16.             <div class="container">
  17.                 <h1 class="logo">{{ include('@Twig/images/symfony-logo.svg') }} Symfony Exception</h1>
  18.                 <div class="help-link">
  19.                     <a href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION') }}/index.html">
  20.                         <span class="icon">{{ include('@Twig/images/icon-book.svg') }}</span>
  21.                         <span class="hidden-xs-down">Symfony</span> Docs
  22.                     </a>
  23.                 </div>
  24.             </div>
  25.         </header>
  26.         {% block body %}{% endblock %}
  27.         {{ include('@Twig/base_js.html.twig') }}
  28.     </body>
  29. </html>
  30. {% block after_html %}{% endblock %}