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";
|
|
|
|
?>
|
|
|
|
|
|
|
|
<h1>Curious About Me?</h1>
|
|
|
|
<p>
|
|
|
|
TBD
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
include "helpers/section_open.php";
|
|
|
|
include "subpages/about/whoami.php";
|
|
|
|
include "helpers/section_close.php";
|
|
|
|
|
|
|
|
include "helpers/section_open.php";
|
|
|
|
include "subpages/about/stance.php";
|
|
|
|
include "helpers/section_close.php";
|
|
|
|
|
|
|
|
include "helpers/section_open.php";
|
|
|
|
include "subpages/about/notice.php";
|
|
|
|
include "helpers/section_close.php";
|
|
|
|
|
|
|
|
include "helpers/body_close.php";
|
|
|
|
?>
|