| 
<!doctype html><html>
 <head>
 <meta charset="UTF-8">
 <meta name="robots" content="noindex">
 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 <meta name="msapplication-navbutton-color" content="#007bff" />
 <meta name="theme-color" content="#007bff" />
 <meta name="apple-mobile-web-app-status-bar-style" content="#007bff" />
 <meta name="apple-mobile-web-app-capable" content="yes" />
 <meta name="viewport" content="user-scalable=no, width=device-width, height=device-height, initial-scale=1, maximum-scale=1" />
 
 <title>Site Under Maintenance!</title>
 
 <style type="text/css">
 <?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
 </style>
 </head>
 <body>
 
 <div class="container text-center">
 
 <h1 class="headline">Relax!</h1>
 
 <p class="lead">We are temporary down for maintenance. Please come back again later...</p>
 
 </div>
 
 </body>
 
 </html>
 
 |