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

@ -1,14 +1,25 @@
#!/bin/php
#!/usr/bin/php
<?php
include "body_open.php";
include "helpers/body_open.php";
?>
<h1> Welcome! </h1>
<p> This is a test. It can be ignored. :) </p>
<?php
include "body_close.php";
?>
<?php
include "helpers/section_open.php";
include "subpages/home/apps.php";
include "helpers/section_close.php";
include "helpers/section_open.php";
include "subpages/home/health.php";
include "helpers/section_close.php";
include "helpers/section_open.php";
include "subpages/home/contact.php";
include "helpers/section_close.php";
include "helpers/body_close.php";
?>