10 lines
234 B
Twig
10 lines
234 B
Twig
|
{% extends 'errors.base' %}
|
||
|
|
||
|
{% block title %}503 Service Unavailable{% endblock %}
|
||
|
|
||
|
{% block message %}
|
||
|
<p>
|
||
|
{{ trans('errors.exception.detail', {msg: exception.message ?: trans('errors.http.msg-503')}) }}
|
||
|
</p>
|
||
|
{% endblock %}
|