27 lines
537 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
?>
2022-10-06 22:28:17 -05:00
<h1>Welcome!</h1>
<p>
Website is still in testing. Don't judge too harshly. :)
</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";
?>