27 lines
562 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>
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!
</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";
?>