diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/about.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/pages/about.php b/src/pages/about.php new file mode 100644 index 0000000..11c1eeb --- /dev/null +++ b/src/pages/about.php @@ -0,0 +1,19 @@ +<?php + + $page_title = "about"; + + ob_start(); + +?> + +<h1>about me</h1> + +<p>hi my name is autumn <i>(she / it)</i> and i am somewhere between a nerdy transbian and an aroace foxgirlcreature, idk i'm not a fan of labels. this area is a wip <i>(and i hate describing myself)</i> so come back soon :3</p> + +<?php + + $page_content = ob_get_clean(); + + include "_template.php"; + +?> |
