31 lines
792 B
PHP
Raw Normal View History

2022-10-06 22:16:27 -05:00
#!/usr/bin/php
<!--
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
?>
<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>
</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";
?>