Add header & footer to blog posts.

This commit is contained in:
2025-02-17 13:06:49 +01:00
parent 6f6725cb7a
commit 04648315a8
164 changed files with 1476 additions and 0 deletions

View File

@ -1,4 +1,13 @@
<?php
require 'config.php';
require '2019-06-13-blog-break-is-over.cfg.php';
require 'templates/blog-header.php';
?>
<p>I haven't posted on my blog for quite a while, but there's a reason for this. As you may have noticed, the paths for my website have changed (again), this is because I've changed the underlying framework for my website to make it more manageable (instead of a jury rig). In doing so, I haven't gotten the functionality to post blog articles to work until now.</p>
<p>Now that everything's finally setup, I have quite a few topics that I'd like to write articles about, so you can look forward to that.</p>
<?php
require 'templates/blog-footer.php';
?>