aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.php
blob: 152b9ff4e10e3663f3def837cd0a6116e726d2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

    $page_title = "home";

    ob_start();

?>

<p>welcome to autumn's forest :3</p>
<p>a bit about me: i'm somewhere between a nerdy transbian and a aroace foxgirlthing. i'll pad this out at a later date, i promise</p>
<p>this site is a work-in-progress - my last website was based off of the MacOS 9 theme & window layout. this was too much of a pain to deal with (and i lost my MacOS 9 icon pack and idk where to get them again :[) so i'm doing something different here.</p>
<p>for now, if you need me you can contact me at <a href="mailto:contact@autumnfo.rest">contact@autumnfo.rest</a>, or <a href="/blog/2026-04-27">check out my singular test blog post</a>!</p>

<?php

    $page_content = ob_get_clean();

    include "_template.php";

?>