blob: a47ae1e41a7af1e182dd4eecb8c4311943688662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
html_header( __("Page Not Found") );
?>
<div id="error-page" class="box 404">
<h2>404 - <?= __("Page Not Found") ?></h2>
<p><?= __("Sorry, the page you've requested does not exist.") ?></p>
</div>
<?php
html_footer(AURWEB_VERSION);
|