summaryrefslogtreecommitdiff
path: root/src/writing/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/writing/index.php')
-rw-r--r--src/writing/index.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/writing/index.php b/src/writing/index.php
new file mode 100644
index 0000000..894f123
--- /dev/null
+++ b/src/writing/index.php
@@ -0,0 +1,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"); ?>