27 lines
658 B
PHP
Executable File

#!/usr/bin/php
<?php
include "helpers/body_open.php";
?>
<div class="row col-12 title">
<h1>Welcome!</h1>
<p>
[ Website is still in testing. Don't judge too harshly. :) ]
</p>
<p>
Welcome to 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>
<?php
include "helpers/section_open.php";
include "subpages/home/apps.php";
include "helpers/section_close.php";
include "helpers/body_close.php";
?>