diff options
author | 53hornet <atc@53hor.net> | 2021-07-28 10:58:58 -0400 |
---|---|---|
committer | 53hornet <atc@53hor.net> | 2021-07-28 10:58:58 -0400 |
commit | bfaccc32571df8a02f69518d8864244efba3b5b5 (patch) | |
tree | cc71a44054af00e73d0db2a1c79c347db3f31327 /index.php | |
parent | dd75b4a341925e4ba3408b018941241d4317dd9f (diff) | |
download | 53hor-bfaccc32571df8a02f69518d8864244efba3b5b5.tar.xz 53hor-bfaccc32571df8a02f69518d8864244efba3b5b5.zip |
php site, templating and partials, faster index generation
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..e94c87a --- /dev/null +++ b/index.php @@ -0,0 +1,31 @@ +<?php +include('./includes/head.php'); +?> + +<header> + <noscript> + JavaScript? Where we're going we don't need JavaScript. + </noscript> +</header> + +<article> + <h1 style="text-align: center"> + The World Wide Web pages of Adam Carpenter (53hornet) + </h1> + <ul> + <?php + if ($posts = glob('./posts/*.php')) { + $early = true; + + foreach (array_reverse($posts) as $post) { + if (!empty($post) && $post != '.' && $post != '..') { + $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); + } + } + } + ?> + </ul> +</article> |