2017-11-23 18:09:36 -05:00
|
|
|
<?php
|
2023-03-12 06:41:04 -04:00
|
|
|
define("NAME", "");
|
|
|
|
define("TITLE", "");
|
|
|
|
define("WEB_URL", "");
|
2018-01-18 16:57:12 -05:00
|
|
|
require_once("template.php");
|
|
|
|
if (!file_exists("config.php"))
|
|
|
|
{
|
|
|
|
require_once("install.php");
|
|
|
|
}else{
|
|
|
|
require_once("config.php");
|
|
|
|
|
2018-01-07 14:39:10 -05:00
|
|
|
Template::render_header("Page not found");
|
2017-11-23 18:09:36 -05:00
|
|
|
?>
|
|
|
|
<div class="text-center">
|
2017-12-30 18:41:58 -05:00
|
|
|
<h1><?php echo _("Page Not Found");?></h1>
|
|
|
|
<p><?php echo _("Sorry, but the page you were trying to view does not exist.");?></p>
|
2017-11-23 18:09:36 -05:00
|
|
|
</div>
|
|
|
|
<?php
|
2018-01-18 16:57:12 -05:00
|
|
|
Template::render_footer();
|
|
|
|
}
|