added adminpanel main layout/concept

This commit is contained in:
Hendrik
2017-01-12 11:16:57 +01:00
parent 5a33d975fa
commit 72d3a5ad8a
4 changed files with 166 additions and 1 deletions

21
website/admin.php Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<?php
include("views/head.php");
?>
<body>
<?php
/*
* This view adds the main layout over the screen.
* Header and menu.
*/
include("views/main.php");
/* Add your view files here. */
include("views/adminpanel.php");
/* This adds the footer. */
include("views/footer.php");
?>
</body>
</html>