diff options
author | 53hornet <atc@53hor.net> | 2021-12-09 18:46:55 -0500 |
---|---|---|
committer | 53hornet <atc@53hor.net> | 2021-12-09 18:46:55 -0500 |
commit | 4df42ab435f7f575db747b2d50cfb0972172381a (patch) | |
tree | d11d86ba9acb1e1a6f0259dd1e5006148a717eaa | |
parent | 1b00dd0ba5fb29e3f97084f3ed335d555eee06e4 (diff) | |
download | 53hor-4df42ab435f7f575db747b2d50cfb0972172381a.tar.xz 53hor-4df42ab435f7f575db747b2d50cfb0972172381a.zip |
feat: add links index, leftify dates on index
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | links/index.php | 8 |
2 files changed, 9 insertions, 1 deletions
@@ -21,7 +21,7 @@ include('./includes/head.php'); $post_name = explode('/', $post)[2]; $date = implode('-', array_slice(explode('-', $post_name), 0, 3)); include($post); - printf('<li><a href="/%s">%s</a> <code>%s</code></li>', $post, $title, $date); + printf('<li> <code>%s</code> <a href="/%s">%s</a> </li>', $date, $post, $title); } } } diff --git a/links/index.php b/links/index.php new file mode 100644 index 0000000..a5cf83f --- /dev/null +++ b/links/index.php @@ -0,0 +1,8 @@ +<?php +$title = "Egress Links"; +include('../includes/head.php'); +?> + +<p> + If you're going to leave my site to go somewhere else on the web, I recommend linking out via one of these. This is my curated collection of awesome sites, resources, and online assets. +</p> |