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 '2017-10-10-restructuring-the-blog.cfg.php';
require 'templates/blog-header.php';
?>
<p>I have recently restructured my blog so that there are now multiple sections dedicated to different topics. I have done this because I believe that my blog is too random all on its own (all in one big clump). Now there are different categories dedicated to different broad topics, each one has an RSS feed of its own. This (of course) is gonna break a lot of links, but with my website it's best just to remember the domain name and then find things from there. This is a personal website, so I feel no obligation to keep any kinds of backwards compatibility.</p>
<p>I hope this didn't inconvenience anyone, but oh well.</p>
<?php
require 'templates/blog-footer.php';
?>