28 lines
763 B
Twig
28 lines
763 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Service unavailable</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ resource('css/error.css') }}" />
|
|
</head>
|
|
<body>
|
|
<div id="wrap">
|
|
<h1>
|
|
<img src="{{ resource('images/404-info.gif') }}" />
|
|
The page is currently unavailable
|
|
</h1>
|
|
<p>
|
|
The page you are looking for is temporarily unavailable.
|
|
</p>
|
|
<hr />
|
|
<h2>
|
|
{{ message }}
|
|
</h2>
|
|
<h3>
|
|
HTTP 503 - Service unavailable
|
|
<br />
|
|
Internet Explorer
|
|
</h3>
|
|
</div>
|
|
</body>
|
|
</html>
|