templates/layout/error-layout.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>{% block title %}{% endblock %}</title>
  6.     <link href="{{ asset('build/images/apple-touch-icon-180x180.png') }}" rel="apple-touch-icon" sizes="180x180">
  7.     <link href="{{ asset('build/images/touch-icon-192x192.png') }}" rel="icon" sizes="192x192">
  8.     <link rel="shortcut icon" href="{{ asset('build/images/favicon.ico') }}">
  9.     {% block stylesheets %}
  10.         {{ encore_entry_link_tags('app') }}
  11.     {% endblock %}
  12.     {% block javascripts %}
  13.         {{ encore_entry_script_tags('app') }}
  14.     {% endblock %}
  15. </head>
  16. <body>
  17. <div class="container">
  18.     {% block body %}{% endblock %}
  19. </div>
  20. </body>
  21. </html>