After much tinkering with Jekyll (the engine that runs Github pages) I have finally got the blog to a level in which I am happpy with its look and feel. Since I am not the greatest web designer, I decided I would go for ease and simplicity and find a Jekyll theme that was close to what I wanted for this site. It took some time, but I finally decided upon Beautiful Jekyll by Dean Attali. As you will see there isn’t a lot of customisation from the original theme and that is really a credit to the themes creator.
However, the theme was lacking in one thing that I wanted and that was the ability to add tags. The theme does accomodate for them, however it states not to use these on Github pages and use them if you are running Jekyll on a local machine. So I figured I would integrate this on my own.
After a big of googling around I found a few sites, however a lot of them had manaual ways of creating tags or the need to have pre-defined tags with a lot of manual processing for new ones. This didn’t suit me at all, I want something nice clean and simple and then I found Codinfox’s page. Following along through this site allowed me to get the tags I want in my page. So here is how I did it.
Create Tag Page
I created a tags.html page in a folder called blog/ in my root directory of the site. This page will collate all the tags used in each of my posts and then list the posts that correspond to those tags - basically a summary of tags and posts. (still confused? click on a tag and you will go to the page!). Inside tags.html I added the following code.
The comments in the code should really explain how this all works.
From here, I went to my Beautiful Jekyll _config.yml file and set link-tags to true
and then modified the same bit of code on the index.html file and post.html layout file (located in _layouts) to point to my own tags.html page. All that is needed to be modified is the link component of the following code.
This will make your tags now work perfectly. Click a tag and you will be taken to a page to view all the other posts with the same tag. Perfect!
Cheers,