2018-08-15 03:12:58 +02:00
|
|
|
{% extends 'master.twig' %}
|
2018-03-28 02:35:37 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2018-04-16 02:33:54 +02:00
|
|
|
<div class="container">
|
2018-08-07 00:19:35 +02:00
|
|
|
<div class="container__title">
|
|
|
|
{{ title|default(error_code|default(http_code) >= 400 ? 'Error' : 'Information') }} {{ error_code|default(http_code >= 400 ? http_code : '') }}{{ error_text is defined ? ' - ' ~ error_text : '' }}
|
|
|
|
</div>
|
|
|
|
|
2018-04-16 02:33:54 +02:00
|
|
|
<div class="container__content">
|
2018-08-07 00:19:35 +02:00
|
|
|
{% if message is defined %}
|
|
|
|
<p>{{ message }}</p>
|
|
|
|
{% else %}
|
|
|
|
{% block error_message %}
|
|
|
|
<p>Try again later, perhaps.</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% endif %}
|
2018-03-28 02:35:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|