nodejs-website/pages/about.php
Chad 8b49e87e83
Modify Residential Terminology, Add More Explicit Notices (#6)
* Add lowercase "state".

* Add more explicit message about stance on law vs Law.

* Improve the language, split a section.

* Change more wording.

* Further enhance wording.

* Avoid saying state or country since I don't currently fully understand the definitions.

* Make the paragraph read slightly better.
2023-07-23 02:27:36 +00:00

44 lines
1.4 KiB
PHP
Executable File

#!/usr/bin/php
<?php
include "helpers/body_open.php";
?>
<div class="row">
<h1 class="col-12 title">Who Am I?</h1>
</div>
<div class="row">
<div class="col-12 text">
<p>
Hi there! My name is Chad, I am the primary content creator behind the
Hyperling and HyperVegan brands. Thank you for your interest!
</p>
<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>.
It also includes a link to my full history of changes.
</p>
<p>
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.
</p>
<p>
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.
</p>
</div>
</div>
<?php
include "subpages/about/notice.php";
include "subpages/about/health.php";
include "subpages/about/stance.php";
include "helpers/body_close.php";
?>