FreeSTAR-Status-Engine/404.php

12 lines
309 B
PHP

<?php
require("config.php");
require("header.php");
require("footer.php");
render_header("Page not found");
?>
<div class="text-center">
<h1><?php echo _("Page Not Found");?></h1>
<p><?php echo _("Sorry, but the page you were trying to view does not exist.");?></p>
</div>
<?php
render_footer();