diff options
| author | Autumn <git@autumnfo.rest> | 2026-04-29 21:24:25 +0100 |
|---|---|---|
| committer | Autumn <git@autumnfo.rest> | 2026-04-29 21:24:25 +0100 |
| commit | 6b588879282bc2dbdd963b1996c545f1a4096131 (patch) | |
| tree | af5166409dc384a450ef0163b577bf84ec438446 | |
| parent | 7b7a4efe8a6619c22651a496ce42b7c89b986ab9 (diff) | |
[pages] added about page
| -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"; + +?> |
