aboutsummaryrefslogtreecommitdiff
path: root/src/pages/index.php
blob: 54a9db5da31c19dc4c182cb3f22adaf536891d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

    $page_title = "home";

    ob_start();

?>

<p>welcome to my forest ^~^</p>

<p>my name is autumn, and i am some foxgirl-transbian-aroace-creature-girlthing. you can read more about me on my <a href="/about">very basic about page</a> :3</p>
<p>this site is a work-in-progress. for now, it is a mostly-raw-HTML PHP site that is as minimal as possible because idk i feel like it. previous autumn observers might have seen the MacOS 9 inspired one (and older autumn observers might remember the Windows 9x one) - as cool as that was, it was a pain to deal with & i lost access to a good repository of OS9 icons that i simply cannot find again, so i can't be bothered. might reuse that theme template on a different site - i am proud of what i made with my own two paws :3</p>

<p>here are some other useful things here:</p>
<ul>
    <li>
        <a href="/thoughts">my Thoughts on certain things</a>
    </li>
    <li>
        <a href="/blog">some blog posts on things i guess</a>
    </li>
    <li>
        to contact me, email me at <a href="mailto:contact@autumnfo.rest">contact@autumnfo.rest</a>
    </li>
</ul>

<?php

    $page_content = ob_get_clean();

    include "_template.php";

?>