all the website mainly done

This commit is contained in:
0xa0
2026-07-21 20:45:47 +02:00
parent 20f9aca26b
commit 30609c3bb3
15 changed files with 2127 additions and 25 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
require __DIR__ . '/inc/posts.php';
$page_title = 'blog · ' . SITE_TITLE;
require __DIR__ . '/inc/header.php';
?>
<h1>blog</h1>
<p>things I've written, newest first.</p>
<?php render_post_list(all_posts()); ?>
<?php require __DIR__ . '/inc/footer.php'; ?>