Initial commit

This commit is contained in:
Vojtěch Sajdl
2017-11-24 00:09:36 +01:00
parent 1927064e49
commit 9a49428bf9
38 changed files with 12362 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
require("config.php");
require("header.php");
require("footer.php");
render_header("Page not found");
?>
<div class="text-center">
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
</div>
<?php
render_footer();