nodejs-website/pages/about.php

27 lines
497 B
PHP
Raw Normal View History

2022-10-06 22:16:27 -05:00
#!/usr/bin/php
<?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";
?>