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>
|
2024-01-26 02:50:43 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 header center" >
|
2024-01-28 08:52:59 -07:00
|
|
|
<img src="/files/media/icons/home.jpg">
|
2024-01-26 02:50:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text">
|
2024-01-25 07:37:10 -07:00
|
|
|
<p>
|
|
|
|
Thank you for visiting my site! My goal is to make the world a
|
|
|
|
better place. Hopefully you find content here which helps
|
|
|
|
empower you to do the same!
|
2022-10-16 09:22:44 -05:00
|
|
|
</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";
|
|
|
|
?>
|