templates/Error/error.html.twig line 1

Open in your IDE?
  1. {% extends 'Error/layout.html.twig' %}
  2. {% block title %} - Błąd {{ status_code }} - {{ websitetitle }}{% endblock %}
  3. {% block content %}
  4.     <div class="content">
  5.         <img alt="Błąd {{ status_code }}" src="{{ asset('/frontend/img/general/error.svg') }}" />
  6.         <h2>{{ status_code }}</h2>
  7.         <div class="error-status">
  8.             {% if status_code == 404 %}
  9.                 <h1 role="heading" aria-level="1">Strona nie została znaleziona</h1>
  10.             {% else %}
  11.                 <h1 role="heading" aria-level="1">Serwer zwrócił błąd</h1>
  12.                 <div class="error-status-text">
  13.                     {{ status_text }}
  14.                 </div>
  15.             {% endif %}
  16.         </div>
  17.         <a href="{{ get_url_by_internal_name('homepage', app.request.locale) }}" class="btn btn--blue">Przejdź do strony głównej</a>
  18.     </div>
  19. {% endblock %}