summaryrefslogtreecommitdiff
path: root/src/writing/index.php
blob: 894f123cfeb7660a7232f75af712f846d639a877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$title = "Writing";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
    This is the index page for my writing. Obviously, if you follow the links below, you can read things I've
    written.
    Whether or not you want to do that is up to you.
</p>
<ul>
    <li>
        <h3><a href="cryptography.php">Cryptography</a> /* Keep yourself safe */</h3>
    </li>
    <li>
        <h3><a href="moralrealism.php">Moral realism</a> /* (It's not real)  */</h3>
    </li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>