21 lines
396 B
PHP
21 lines
396 B
PHP
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<?php include "./page-blocks/head.php"; ?>
|
|
<title>Projects</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php include "./page-blocks/menu.php"; ?>
|
|
|
|
<h1 class="page-title">Projects</h1>
|
|
<div class="page-main-content">
|
|
<p>Sorry, there's nothing here yet</p>
|
|
</div>
|
|
|
|
<?php include "./page-blocks/footer.php"; ?>
|
|
|
|
</body>
|
|
</html>
|