templates/Error/layout.html.twig line 1

Open in your IDE?
  1. {% spaceless %}<!DOCTYPE html>
  2. {% set htmlLocale = app.request.locale|default(defaultlocale)|slice(0,2) %}
  3. <!--[if lte IE 9]> <html class="no-js lt-ie9" lang="{{ htmlLocale }}"> <![endif]-->
  4. <!--[if gt IE 9]><!--> <html lang="{{ htmlLocale }}"> <!--<![endif]-->
  5. <head>
  6.     <meta charset="utf-8">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <title>
  10.         {{ websitetitle | trans }}{% block title %}{% endblock %}
  11.     </title>
  12.     {# Favicons #}
  13.     {% include 'Layout/_favicons.html.twig' %}
  14.     {# Webfonts #}
  15.     {% include 'Layout/_webfonts.html.twig' %}
  16.     {# CSS #}
  17.     {% include 'Layout/_css.html.twig' %}
  18. </head>
  19. <body class="error-page {% block extra_body_classes %}{% endblock %}" {% block extra_body_attributes %}{% endblock %}>
  20.     {# Google Tagmanager #}
  21.     {% include 'Layout/_googletagmanager.html.twig' %}
  22.     {# Outdated browser message #}
  23.     {% include 'Layout/_outdatedbrowser.html.twig' %}
  24.     {# Content #}
  25.     <main>
  26.         {% block content %}{% endblock %}
  27.     </main>
  28. </body>
  29. </html>
  30. {% endspaceless %}