blob: fb0b25d998265b6c6cc94f4c998f00289766f46b (
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> /* Keep your secrets */</h3>
</li>
<li>
<h3><a href="moralrealism.php">Moral realism</a> /* Murder is fine, actualy */</h3>
</li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|