9 lines
303 B
Twig
9 lines
303 B
Twig
|
{% extends 'master.twig' %}
|
||
|
|
||
|
{% block body %}
|
||
|
<div class="http-err">
|
||
|
<h1 class="http-err-title">{{ http_error_title|default('Unknown Error') }}</h1>
|
||
|
<p class="http-err-paragraph">{{ http_error_title|default('No additional information is available.') }}</p>
|
||
|
</div>
|
||
|
{% endblock %}
|