blob: 4bc28fba944023590334ba4a585c05f8a0316de2 (
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
|
<?php
$title = "Hello, I'm Kai!";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>This is my Web site for cool things, like my programming, music, writing, photography, and anything else I
think of.
I'm a social sciences student at UVic, though I'm also passionate about technology. I also have another
website at
kaistevenson.com, if you don't like static-ish sites :(. You can email me at kai@kaistevenson.com.
</p>
<ul>
<li>
<h2><a href="writing/">Writing../</a> /* Proudly part of the 84% */</h2>
</li>
<li>
<h2><a href="programming/">Programming../</a> /* It's easier than it looks */</h2>
</li>
<li>
<h2><a href="music/">Music../</a> /* Dmin7, G7, CMaj7 */</h2>
</li>
<li>
<h2><a href="photography/">Photography../</a> /* No longer obscure-a */</h2>
</li>
<li>
<h2><a href="etc/">Etc../</a> /* Everything else */</h2>
</li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|