Start adding and organizing content.

This commit is contained in:
2022-10-06 22:16:27 -05:00
parent ac20b32b57
commit a327465e2d
21 changed files with 118 additions and 32 deletions

View File

@ -0,0 +1,8 @@
<?php
include "footer.php"
?>
</body>
</html>

View File

@ -0,0 +1,12 @@
<?php
include "header.php"
?>
<body>
<?php
include "menu.php"
?>

3
pages/helpers/footer.php Normal file
View File

@ -0,0 +1,3 @@
<h6> Copyright $year </h6>

1
pages/helpers/head.php Normal file
View File

@ -0,0 +1 @@
DELETEME

7
pages/helpers/header.php Normal file
View File

@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<head>
</head>

7
pages/helpers/menu.php Normal file
View File

@ -0,0 +1,7 @@
<ul>
<li><a href="https://hyperling.com">Home</a></li>
<li><a href="https://hyperling.com/about/">About</a></li>
<li><a href="https://hyperling.com/support/">Support</a></li>
</ul>

View File

View File