There are a lot of templates for Jekyll out there, but none of them seemed to do it for me. I was looking for a simple template that included:
- NOT Wordpress ;)
- Bootstrasp 5
- Multi-blog support
- local assets (as much as possible...)
So what is "Multi-Blog Support?"
I wanted to be able to run seperate blogs in the same domain, so that I could have public blog posts, and private ones. I did that by seperating posts by categories, using tags to search within that category. Within _config.yml
, I changed the permalinks
setting to not point to a category-based folder:
permalink: /:categories/:year/:month/:day/:title/
Then used the following liquid tag to process only posts that have thier category set to Blog:
{% if post.categories contains 'Blog' %}