13 lines
226 B
Twig
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> |