mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 03:27:23 +08:00
10 lines
234 B
Twig
Executable File
10 lines
234 B
Twig
Executable File
{% 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 %}
|