12 lines
309 B
PHP
Raw Normal View History

2017-11-24 00:09:36 +01:00
<?php
require("config.php");
require("header.php");
require("footer.php");
render_header("Page not found");
?>
<div class="text-center">
2017-12-31 00:41:58 +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>
<?php
render_footer();