blob: c8fa4f6d942968576ecfe0b5a11687f75c63fc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$title = "Writing";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
This is the index page for my writing. Each link leads to a different thing that I've written!
Some of these were written for assignments, and some just because I felt like it.
</p>
<ul>
<li><h3><a href="cryptography.php">Cryptography</a> /* Because secret messages are cool */</h3></li>
<li><h3><a href="moralrealism.php">Moral realism</a> /* Because people make a big deal out of murder */</h3></li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|