summaryrefslogtreecommitdiff
path: root/src/index.php
blob: b95e3f2680d21beff9569cf1b836501d83d0a38f (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
<?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. 
    I'm a student at The University of Victoria in Canada, though I try to find time to do things other than schoolwork. 
    You can email me at kai@kaistevenson.com.
</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>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>