aboutsummaryrefslogtreecommitdiff
path: root/src/pages/about.php
blob: 77ee9d53448772073784a62a49d6e3fe698532af (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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.</p>

<p>this area is a wip <i>(and i hate describing myself)</i> so come back soon :3</p>

<h2>where to find me</h2>

<ul>

    <li>
        <strong>code & stuff</strong>:

        <ul>

            <li>
                <strong>personal git</strong>: <a href="https://code.autumnfo.rest">code.autumnfo.rest</a>
            </li>

            <li>
                <strong>codeberg</strong>: <a href="https://codeberg.org/0xPortal">0xPortal</a>
            </li>

        </ul>
    </li>

    <br />

    <li>
        <strong>music scrobbling</strong>: <a href="https://scrobble.autumnfo.rest">scrobble.autumnfo.rest</a>
    </li>

    <li>
        <strong>wikipedia</strong>: <a href="https://en.wikipedia.org/wiki/Special:Contributions/Fopipedia">fopipedia</a>
    </li>

</ul>

<?php

    $page_content = ob_get_clean();

    include "_template.php";

?>