summaryrefslogtreecommitdiff
path: root/src/index.php
blob: 4e37ec81a30ca578165bf27d100a0779891a2d19 (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
<?php
$title = "aberrantflux.xyz";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
	I'm Kai Stevenson, and this is my personal Web site for things that I like, such as programming, music, philosophy, and photography. 
	You can email me at kai@kaistevenson.com.
	Whereas I've done some cool things and whereas people sometimes like looking at cool things, you may want
	to follow one of the links below.
</p>
<ul>
	<li>
		<h3><a href="writing/">~/doc/</a> /* My writing and notes */</h3>
	</li>
	<li>
		<h3><a href="programming/">~/src/</a> /* My programming */</h3>
	</li>
	<li>
		<h3><a href="music/">~/music/</a> /* My music */</h3>
	</li>
	<li>
		<h3><a href="photography/">~/pic/</a> /* My photography */</h3>
	</li>
	<li>
		<h3><a href="etc/">~/misc/</a> /* Other stuff */</h3>
	</li>
</ul>
<h2>About Me</h2>
<p>
	An absence of personal information on this site is to be attributed less to modesty and more to
	a generalized disregard for what I deem to be more or less irrelevant. That said, I acknowledge
	that some may wish to believe that I am a real human with a real human life, so I've collated some
	official Kai Stevenson trivia:
</p>
<ul>
	<li><p>I was born in 2004, making me ($CURRENTYEAR-2004) years old!</p></li>
	<li><p>My favourite movie is the 1939 propaganda piece <i>Ninotchka</i></p></li>
	<li><p>I live in the Pacific Northwest, south of the 49th and north of the border</p></li>
	<li><p>I was at home minding my own business on the night of January 16th 2020. Please stop asking</p></li>
	<li><p>I have a cat and a dog</p></li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>