2022-10-06 22:16:27 -05:00
|
|
|
#!/usr/bin/php
|
2022-10-16 09:22:44 -05:00
|
|
|
<!--
|
|
|
|
Landing page, keeping it apps and development projects like old WordPress site.
|
|
|
|
-->
|
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-16 09:22:44 -05:00
|
|
|
<div class="row">
|
|
|
|
<h1 class="col-12 title">Welcome!</h1>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text">
|
|
|
|
<p>
|
|
|
|
[ Website is still in development, please treat this as an unfinished product. ]
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Thanks for visiting my site! It is the central hub of my activities,
|
|
|
|
linking you to most of my projects and providing ways to contact and
|
|
|
|
support me. I've also included information such as my health protocol
|
|
|
|
which was currently only scattered throughout videos.
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-10-09 09:43:38 -05:00
|
|
|
</div>
|
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 "subpages/home/apps.php";
|
|
|
|
|
|
|
|
include "helpers/body_close.php";
|
|
|
|
?>
|