2023-10-13 18:01:07 +00:00
|
|
|
{% extends 'master-2021.twig' %}
|
2023-10-12 18:45:11 +00:00
|
|
|
|
|
|
|
{% block container %}
|
|
|
|
<div class="http-error">
|
|
|
|
<h2 class="http-error-head">{{ http_error_title|default('Unknown Error #' ~ http_error_code) }}</h2>
|
|
|
|
{% if http_error_image is defined %}
|
|
|
|
<img src="{{ http_error_image }}" alt="{{ http_error_image }}" class="http-error-image">
|
|
|
|
{% endif %}
|
|
|
|
<div class="http-error-desc">{{ http_error_desc|default('No additional information is available.') }}</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|