Objectify locale negotiator and template files, add documentation

This commit is contained in:
Vojtěch Sajdl
2018-01-07 20:39:10 +01:00
parent 9820686776
commit 61f563c9b0
20 changed files with 440 additions and 230 deletions
+3 -4
View File
@@ -1,12 +1,11 @@
<?php
require("config.php");
require("header.php");
require("footer.php");
render_header("Page not found");
require("template.php");
Template::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();
Template::render_footer();