Adding some customisation and flexibility to my sidebar for a better user experience.
Where automation failed
I’m not saying there is anything wrong with Jekyll’s “related post” logic, it’s solid. My understanding is it takes into account both tags and categories which is fantastic, but during the launch of my site I found that it almost always reflected my recent posts due to the small sample size, even with the --lsi
flag1 enabled at build time.
I was after something with more control: what if there wasn’t even anything related to this post? While this is an edge-case with a bit of work it could still be taken care of.
Improved call to action
You know that feeling when you are watching a new TV series, how easy it is to watch another episode? So often you say one more
and suddenly it’s 3am. That’s what I was after. Keeping the reader’s interest and leading them somewhere specific after an action2. Keeping them engaged in the content while their mind is still focused on it, rather than pondering what to do next…
Hand picked posts
Imagine this, dear reader. You have just finished reading the post that I used to style my content. There you are, all dazed and confused as this entry made no sense what-so-ever and without context it is completely meaningless.
But there was context. As mentioned in Anthology of Interest I that page was used to test my typography and was very relevant. The concept of hand-picked posts meant I had greater control over directing readers around the site. It is perfect for when a reader wants to find out more on a topic they have just read about, such as Sass techniques or a string of entries about rake even though they are six months apart.
Jekyll’s related posts didn’t give me the control that I was after, and at the loss of automation the improved reading experience is well worth it.
YAML
to the rescue
I figured the easiest way to maintain related posts would by via the post title as it was a unique attribute that already existed, so yeah pretty clear winner there. Adding either one or more related
items to each post would trigger the following on the post details page.
Not much to it really, just comparing the value of the each page.related
to the titles in site.posts
return any valid ones. Some slight shifting of content and visuals and there it was, better call to action for related posts!
-
Such as adding products to cart or order confirmation for e-commerce, site/event registration and even 404 pages ↩