blob: 749062bac8f58578e85950b11ef155b06dac0bb1 (
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
|
<?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>i also have a site on the gemini network! it is accessible at <a href="gemini://inthe.autumnfo.rest">gemini://inthe.autumnfo.rest</a> - currently it is basically empty but i will make it closely mirror this site once i flesh {this,that} site out :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>
<h2>cool critters</h2>
<p>here is a bunch of 88x31 tiles of cool creatures. i'll make one myself soon(ish) i promise :3</p>
<a href="https://xn--80andq.net">
<img class="tile" src="https://xn--80andq.net/static/buttons/winter.png" alt="winter's 88x31 tile" loading="lazy" />
</a>
<style>
.tile {
width: 88px;
height: 31px;
}
</style>
<?php
$page_content = ob_get_clean();
include "_template.php";
?>
|