cse435website/index.php
Sean Joseph 1c927a643b Added about page.
The assets directory should store any pictures that the site uses.
Removed lingering directory
2017-10-26 20:08:41 -04:00

21 lines
312 B
PHP

<?php
require_once 'lib/LandingView.php';
$view = new LandingView();
$view->setTitle("CSE 435 Group 6")
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
echo $view->head();
?>
</head>
<body>
<?php
echo $view->header();
echo $view->page();
echo $view->footer();
?>
</body>
</html>