Moves splt private and public files

This commit is contained in:
Marijn Jansen
2017-01-13 14:26:38 +01:00
parent 120e02f4d1
commit faf5442528
37 changed files with 35 additions and 35 deletions

24
website/html/group.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<?php include("../views/head.php"); ?>
<style>
@import url("styles/profile.css");
</style>
</head>
<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>