diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2023-02-18 16:30:58 -0800 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2023-02-18 16:30:58 -0800 |
commit | 5b67af7d88780828cfc41a8fd96ce8fa8f9388a3 (patch) | |
tree | ca224634226d2ec8daa76629b360dab884cf6fac | |
parent | 2b0e67ae81f1dd15684c668e4746586779f0d1d5 (diff) |
updated homepage and programming page
-rw-r--r-- | src/index.php | 4 | ||||
-rw-r--r-- | src/programming/index.php | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/index.php b/src/index.php index 64ba33b..b95e3f2 100644 --- a/src/index.php +++ b/src/index.php @@ -1,10 +1,10 @@ <?php -$title = "Hello, I'm Kai!"; +$title = "aberrantflux.xyz"; require($_SERVER["DOCUMENT_ROOT"] . "/head.php"); require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ?> <p> - This is my personal Web site for things that I like, such as programming, music, philosophy, and photography. + I'm Kai Stevenson, and this is my personal Web site for things that I like, such as programming, music, philosophy, and photography. I'm a student at The University of Victoria in Canada, though I try to find time to do things other than schoolwork. You can email me at kai@kaistevenson.com. </p> diff --git a/src/programming/index.php b/src/programming/index.php index 2153362..afdb64b 100644 --- a/src/programming/index.php +++ b/src/programming/index.php @@ -4,6 +4,13 @@ require($_SERVER["DOCUMENT_ROOT"] . "/head.php"); require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
- My repositories (including some notes) are at aberrantflux.xyz/cgit. I also have some stuff at github.com/kaistevenson. The repo for this site is <a href=http://aberrantflux.xyz/cgit/aberrantflux-site.git>aberrantflux.xyz/cgit/aberrantflux-site.git</a> if you want to get a little meta. I use cgit to serve my repositories over HTTP, and otherwise use SSH.
+ My repositories (including some notes) are at aberrantflux.xyz/cgit. I also have some stuff at github.com/kaistevenson. The repo for this site is <a href=https://aberrantflux.xyz/cgit/aberrantflux-site.git>aberrantflux.xyz/cgit/aberrantflux-site.git</a> if you want to get a little meta. I use cgit to serve my repositories over HTTP, and otherwise use SSH.
+</p>
+<p>
+ I have a few particularly cool projects, like <a href=https://aberrantflux.xyz/cgit/precedent.git>Precedent</a>, my interpreted
+ programming language, and <a href=https://aberrantflux.xyz/cgit/snake3.git>Snake3</a>, a fun snake game.
+ If you want to contribute to any of my repositories, just email me
+ with a diff and a brief description of your changes. If I like your
+ commit, I'll integrate it.
</p>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|