diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2022-10-28 17:36:28 -0700 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2022-10-28 17:36:28 -0700 |
commit | 09feefc9f04b38420a198b6f69895b242832ad30 (patch) | |
tree | f4901d6c67ecfed074ca5a0028a9a7964ac7a70a /src/writing/index.php | |
parent | 04cd72c5b46a16b7b82d581f22fe74d2f1e4916e (diff) |
changed the file structure
Diffstat (limited to 'src/writing/index.php')
-rw-r--r-- | src/writing/index.php | 19 |
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"); ?>
|