This inserts the map structure we will use for the project.

This commit is contained in:
Lars van Hijfte
2017-01-10 14:35:56 +01:00
parent a0934f7395
commit 4da39d5bab
6 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<!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/index.php");
?>
</body>
</html>