2025-05-18 16:32:19 +03:00

13 lines
226 B
Twig

<!doctype html>
<html>
<head><title>{{ title }}</title></head>
<body>
<h1>{{ title }}</h1>
{% if message %}
<p>{{ message }}</p>
{% if stacktrace %}
<pre>{{ stacktrace }}</pre>
{% endif %}
{% endif %}
</body>
</html>