aboutsummaryrefslogtreecommitdiff
path: root/src/pages/about.php
blob: 11c1eeb3734e7374b2ab97d7b8002fbba359622d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";

?>