12 lines
265 B
PHP
12 lines
265 B
PHP
<?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'; ?>
|