2021-03-18 18:26:03 +01:00
|
|
|
<?php
|
2018-01-18 22:57:12 +01:00
|
|
|
require_once("template.php");
|
2021-03-18 18:26:03 +01:00
|
|
|
if (!file_exists("config.php")) {
|
2018-01-18 22:57:12 +01:00
|
|
|
require_once("install.php");
|
2021-03-18 18:26:03 +01:00
|
|
|
} else {
|
|
|
|
require_once("config.php");
|
2018-01-18 22:57:12 +01:00
|
|
|
|
2021-03-18 18:26:03 +01:00
|
|
|
Template::render_header("Page not found");
|
2017-11-24 00:09:36 +01:00
|
|
|
?>
|
|
|
|
<div class="text-center">
|
2021-03-18 18:26:03 +01: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-24 00:09:36 +01:00
|
|
|
</div>
|
2021-03-18 18:26:03 +01:00
|
|
|
<?php
|
|
|
|
Template::render_footer();
|
|
|
|
}
|