11 lines
502 B
Twig
11 lines
502 B
Twig
{% extends 'master-2021.twig' %}
|
|
|
|
{% 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 %}
|