diff options
author | Malf Furious <m@lfurio.us> | 2016-03-05 21:36:38 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-27 20:16:32 -0400 |
commit | ec0eee8f6c5cccfc0a29ecd8cbd08be183e1eb92 (patch) | |
tree | d4869523c6589ebd8ba064bcdb5b40f65685a793 /app/view/dashboard/default.view.php | |
parent | 7a2672164a73bb011a3d930df52c0643ee18457d (diff) | |
download | scrott-ec0eee8f6c5cccfc0a29ecd8cbd08be183e1eb92.tar.gz scrott-ec0eee8f6c5cccfc0a29ecd8cbd08be183e1eb92.zip |
Add Dashboard MVC default view
Diffstat (limited to 'app/view/dashboard/default.view.php')
-rw-r--r-- | app/view/dashboard/default.view.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/view/dashboard/default.view.php b/app/view/dashboard/default.view.php new file mode 100644 index 0000000..059d9c8 --- /dev/null +++ b/app/view/dashboard/default.view.php @@ -0,0 +1,13 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <?php include "view/common/head.view.php"; ?> + <title>Scrott - Dashboard</title> + </head> + + <body> + <?php include "view/common/topp.view.php"; ?> + <?php include "view/common/foot.view.php"; ?> + </body> +</html> |