mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 03:37:23 +08:00
10 lines
236 B
Twig
Executable File
10 lines
236 B
Twig
Executable File
{% extends 'errors.base' %}
|
|
|
|
{% block title %}500 Internal Server Error{% endblock %}
|
|
|
|
{% block message %}
|
|
<p>
|
|
{{ trans('errors.exception.detail', {msg: exception.message ?: trans('errors.http.msg-500')}) }}
|
|
</p>
|
|
{% endblock %}
|