26 lines
518 B
PHP
Raw Normal View History

2022-10-06 22:16:27 -05:00
#!/usr/bin/php
2022-10-06 07:05:46 -05:00
<?php
2022-10-06 22:16:27 -05:00
include "helpers/body_open.php";
2022-10-06 07:05:46 -05:00
?>
<h1> Welcome! </h1>
<p> This is a test. It can be ignored. :) </p>
2022-10-06 22:16:27 -05:00
2022-10-06 07:05:46 -05:00
<?php
2022-10-06 22:16:27 -05:00
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";
2022-10-06 07:05:46 -05:00
2022-10-06 22:16:27 -05:00
include "helpers/section_open.php";
include "subpages/home/contact.php";
include "helpers/section_close.php";
include "helpers/body_close.php";
?>