Added about page.
The assets directory should store any pictures that the site uses. Removed lingering directory
This commit is contained in:
23
about.php
Normal file
23
about.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user