blob: d94d5d1a8bd8feeae0d49466d42e1ab22af1b391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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"); ?>
|