diff options
Diffstat (limited to 'web/html/404.php')
-rw-r--r-- | web/html/404.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/web/html/404.php b/web/html/404.php new file mode 100644 index 00000000..06ad683a --- /dev/null +++ b/web/html/404.php @@ -0,0 +1,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(AUR_VERSION); |