2022-10-06 22:16:27 -05:00
|
|
|
#!/usr/bin/php
|
2022-10-08 09:19:40 -05:00
|
|
|
<?php
|
|
|
|
include "helpers/body_open.php";
|
|
|
|
?>
|
2022-10-16 09:22:44 -05:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<h1 class="col-12 title">Who Am I?</h1>
|
2023-07-23 01:07:13 +00:00
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text">
|
2023-07-23 01:07:13 +00:00
|
|
|
<p>
|
2022-10-16 09:22:44 -05:00
|
|
|
Hi there! My name is Chad, I am the primary content creator behind the
|
|
|
|
Hyperling and HyperVegan brands. Thank you for your interest!
|
|
|
|
</p>
|
2023-07-23 01:07:13 +00:00
|
|
|
<p>
|
|
|
|
My hobbies go further than just coding and video making. I am big into
|
|
|
|
health and believe it is humanity's most important asset. I was fortunate
|
|
|
|
to have time off school/work/hobbies in my early 20's and was able to
|
|
|
|
lock in a great lifestyle after a life of chronic sickness. See more
|
|
|
|
below in <a href="#health">My Health Protocol</a>.
|
2023-03-04 06:44:55 -06:00
|
|
|
It also includes a link to my full history of changes.
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
2022-10-18 20:12:45 -05:00
|
|
|
<p>
|
2023-07-23 01:07:13 +00:00
|
|
|
I am also an avid gardener, focusing on the principles of nature-based
|
|
|
|
permaculture in order to grow fruits and vegetables, like in a Food
|
|
|
|
Forest system. This comes with other outdoor interests such as hiking,
|
|
|
|
camping, backpacking, foraging, and traveling.
|
2022-10-18 20:12:45 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2023-07-23 02:27:36 +00:00
|
|
|
I live within the boundaries known as the United States of America.
|
|
|
|
From birth to 2023 it was the subboundaries of Indiana, and since 2023
|
|
|
|
it is the subboundaries of Arizona.
|
2022-10-16 09:22:44 -05:00
|
|
|
</p>
|
2023-07-23 01:07:13 +00:00
|
|
|
</div>
|
2022-10-16 09:22:44 -05:00
|
|
|
</div>
|
2022-10-08 09:19:40 -05:00
|
|
|
|
|
|
|
<?php
|
2022-10-16 09:22:44 -05:00
|
|
|
include "subpages/about/notice.php";
|
|
|
|
include "subpages/about/health.php";
|
2022-10-08 09:19:40 -05:00
|
|
|
include "subpages/about/stance.php";
|
|
|
|
|
|
|
|
include "helpers/body_close.php";
|
|
|
|
?>
|