Added group view

This commit is contained in:
Kevin Nobel
2017-01-11 15:42:32 +01:00
parent b4c7bfb1ef
commit 5be19ce91d
5 changed files with 162 additions and 7 deletions

21
website/group.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, menu, footer.
*/
include("views/main.php");
/* Add your view files here. */
include("views/group.php");
/* This adds the footer. */
include("views/footer.php");
?>
</body>
</html>