blob: 80eb436944eaf9c1f1a82bb917ee6c32e5d9ff2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
html_header( __("Service Unavailable") );
?>
<div id="error-page" class="box 503">
<h2>503 - <?= __("Service Unavailable") ?></h2>
<p><?= __("Don't panic! This site is down due to maintenance. We will be back soon.") ?></p>
</div>
<?php
html_footer(AURWEB_VERSION);
|