Templating posts.
I'm not sure if this is putting the cart before the horse but I already have handrolled some form of templating for this site's posts. At least if I change names or move cities it's not too difficult to update everywhere. To see the template and template script I'm using, see these links: templating script, post template. There are so many repetitions across this site that I could abstract out but for now I don't need to do that, so I won't.
Also as a note to myself, it is really not ideal that the way for me to regenerate is to effectively run 'find . -type f -name "*.html" ! -name "index.html"' after 'python3 template_posts.py post_contents/ ./' and before 'find . -type f -name "*.html" ! -name "index.html" -exec rm {} +', but it works, for now.