20 lines
423 B
HTML
20 lines
423 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Something Bad Happened</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Error: {{status}}</h1>
|
|
<hr>
|
|
{% if title %}
|
|
<h2>{{title}}</h2>
|
|
{% endif %}
|
|
{% if message %}
|
|
<h4>{{message}}</h4>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|