Click here to Skip to main content
15,887,214 members
Articles / YAML

Implementing Post Series in Jekyll

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
30 Dec 2023CPOL2 min read 1.5K   1  
Structured system organizing blog post series visually with YAML and code
Implementing a structured system to visually represent post series on a blog using YAML Front-matter and additional code in the layout file, enabling the display of related posts in a box format.

There were several occasions in the past where I wrote a “post series”, i.e., multiple posts about the same topic that belong together.

Until now, there was only one way to visually indicate this: including the name of the series in the post title, like this:

  • Cool Series, part 1: Intro
  • Cool Series, part 2: Implementation
  • etc.

Sometimes, I actually remembered to name the posts like this…sometimes I didn’t.

Recently, I noticed a few examples how others show post series on their blogs:

  • Ayende (example post)
    • at the top of the post, there are separate “previous/next post” and “previous/next post in this series” links
    • at the bottom of a post is a “More posts in this series” box
  • Steven van Deursen (example post)
    • at the top of the post, there is a box with links to all posts in the series

“Previous/next post in this series” links sound tempting, but my blog is built with Jekyll, and it’s not that easy to determine the previous/next post that belongs to the same series.

But a box with links to all posts in the series, that’s doable. Here’s how I built it:

1. Defining the Series in the YAML Front-matter

I just added a new variable called series to all relevant posts.

Example:

series: "Hugo/Lightbox image gallery"

This string is used to determine which posts belong together, so it must be 100% identical for all posts in the same series.

2. Adding the “Series Box” to the Layout File

I’m using a separate layout file (which inherits from the default layout) for posts.

The additional code for the “series box” goes into that file (so the box can only appear in posts), and here’s the complete code for it:

ASP.NET
{% if page.series %}
<div>
  <h4>This post is part of a series: {{ page.series }}</h4>
  <ol>
    {% assign posts = site.posts | where: "series", page.series | sort: "date" %}
    {% for post in posts %}
    <li>{% if post.url == page.url %}{{ post.title }} <i>(this post)</i>{% else %}
        <a href="{{ post.url }}">{{ post.title }}</a>{% endif %}</li>
    {% endfor %}
  </ol>
</div>
{% endif %}

Nothing fancy here:

  • if page.series ⇒ only show the whole block if the current page actually has a series variable
  • assign posts = site.posts | where: "series", page.series | sort: "date" ⇒ load all posts that have the same series as the current post (including the current post)
  • loop them
    • if it’s the current post, show the title only as text with “(this post)” behind it
    • for all other posts, show them as links

And finally, here’s an example how the finished “series box” looks like.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --