summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2022-10-08 18:40:34 -0700
committerKai Stevenson <kai@kaistevenson.com>2022-10-08 18:40:34 -0700
commit7cdaa8b30fcd8ab333d11719dc4b280b28347a71 (patch)
tree60a9882f4e33535ad73101150d80a1daa1da03dc /index.php
parent7c402bbaacfa6acd2d4a2184975ec83f5edde329 (diff)
set up PHP
Diffstat (limited to 'index.php')
-rw-r--r--index.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..4bc28fb
--- /dev/null
+++ b/index.php
@@ -0,0 +1,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"); ?> \ No newline at end of file