cse435website/about.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

24 lines
315 B
PHP

<?php
/**
* About team page.
*/
require_once "lib/AboutView.php";
$view = new AboutView();
$view->setTitle("Meet the Team");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
echo $view->head();
?>
</head>
<body>
<?php
echo $view->header();
echo $view->page();
echo $view->footer();
?>
</body>
</html>