19 lines
686 B
Twig
19 lines
686 B
Twig
{% extends 'master.twig' %}
|
|
{% from 'macros.twig' import container_title %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
{{ 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 class="container__content">
|
|
{% if message is defined %}
|
|
<p>{{ message }}</p>
|
|
{% else %}
|
|
{% block error_message %}
|
|
<p>Try again later, perhaps.</p>
|
|
{% endblock %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|