I use Jekyll quite a bit, for this site, for the SingaporeCSS site, for my Penang Hokkien site, you get the picture. In case you’ve never heard of Jekyll, it is a static site generator. And there are quite a lot of static site generators out there, popular ones (that I’ve personally heard of) being Hugo, Gatsby and Metalsmith. In fact, Netlify maintains a list of open source static sites generators called StaticGen. It’s a really long list.

Some people even build their own, like my good friend, Zell Liew, who spoke about the experience. I’m not one of those people. I discovered Jekyll when I first heard Anna Debenham talk about it on Episode 72 of The Web Ahead podcast. I had been only using Drupal at work and was intrigued by the idea of a flat file CMS.

Using data files in Jekyll

Cut to 3 years later and Jekyll is now on version version 3.6.2 as of time of writing, and things have changed quite a bit from June 2014, just look at their change log over the years. The ability to store data in files was first introduced in 2013 for the 1.3.0 release. So it was already a feature by the time I picked up Jekyll.

The first time I used it was to implement tags on this blog of mine. The resource I referenced was written by Stephan GroรŸ because my broke ass hosted (and still hosts) this site on GitHub Pages and I needed a solution that didn’t rely on plugins. Stephan’s post was literally the perfect answer to my question, namely How To Use Tags And Categories On GitHub Pages Without Plugins.

The documentation on Jekyll’s site is pretty well-written and for basic use cases, they’ve got you covered. Jeykll supports data contained in YAML, JSON and CSV files which are stored in a _data directory in your root Jekyll project. In their words, Jeykll is a text transformation engine, so most of it’s functionality is predicated on the project’s directory structure.

Liquid template language

Jekyll uses Liquid as it’s templating language, so it does require Ruby to run, and this may put some people off. But like I said, the choices for static site generators are more than you can shake a stick at, so you do you and I’ll use Jekyll.

There are basic logic operators for control flow, if, elsif/else, case/when and one that I hadn’t seen before, unless, which is the opposite of if where a code block is executed only if a certain condition isn’t met. Liquid doesn’t have a not operator, so unless is the closest equivalent. It does make for some interesting control statements.

We also have a couple of iterators to work with, for, cycle and tablerow, and they come with parameters like limit, offset and range that can be combined in different ways to make Jekyll quite flexible (at least for my use cases thus far). The Liquid documentation is an useful reference as all of their standard tags and filters are supported in Jekyll.

It is possible to create variables with the assign tag and this becomes useful when you want to do things like access nested data in your convoluted data files (nah, that’s just me, I’m sure your files look great). There’s also a capture tag, which I don’t usually use, but it allows you to create complex strings with other variables created from assign. Read the docs ๐Ÿ˜›.

Reworking the SingaporeCSS website

The SingaporeCSS website has always been a pet project of mine, even though I don’t think anyone really visits the site, it’s my baby and I love it regardless. SingaporeCSS organises Talk.CSS, which is the only CSS-centric meetup in Singapore, and sister meet-up to Talk.JS, our Javascript-centric counterpart.

We’ve been around for 2 years now and will soon be having our 24th meetup, not too bad for something that started off as a random chat in the KopiJS slack channel. As the online presence of a CSS meetup, I figured it’d be a good chance to try out ALL THE THINGS. Specifically all the CSS things. #personalplayground

As the site grew, it didn’t make sense to keep writing the markup by hand, especially since every post was generally using a similar format. But I was lazy, so lazy. Until I finally decided to stop procrastinating and resolve this technical debt. Actually, I had wanted to create a page to list all past speakers but soon found the existing implementation made this idea infeasible.

Each post has a section on videos, and a section on speakers. This has been standard from day 1. Along the way, I added a few segments, a HTML and CSS news for the month bit, a CSS colour of the month bit, and a soon-to-be-revived CSS grid demo of the month bit. The thing about the news segment is that sometimes it gets recorded as video, and sometimes it doesn’t. There is always a write-up accessible from the GitHub repo though.

Here’s where Jekyll’s truthy and falsy comes in really handy. Most of my conditionals involve checking if something exists or not, so my template will render only what shows up in the data entry. I ended up having 3 separate data files for my intents and purposes. One for speaker data, one for video data and one for meetup data.

shiawuen:
  name: "Tan Shiaw Uen"
  twitter: "shiawuen"
  shortcode: "shiawuen"
  bio: "Shiaw Uen is a developer. He occasionally plants vegetables and makes soap."
s303:
  title: "CSS whack-a-mole"
  link: "https://youtu.be/7Nyi3Iwa4s4"
  shortcode: "s303"
  description: "Creating a game in pure CSS? Shiaw Uen schools us in the dark arts of the CSS checkbox hack."
3:
  videos:
    - ref: s301
    - ref: s302
    - ref: s303
  speakers:
    - ref: sayanee
    - ref: yongjun
    - ref: shiawuen

The meetup entry eventually expanded to (or could be expanded to) something like this:

15:
  colour:
    name: chartreuse
    hex: "#7fff00"
    rgba: rgba(127,255,0,1)
  videos:
    - ref: s1501
    - ref: s1502
    - ref: s1503
    - ref: s1504
  codepen:
    description: "This particular demo by Jen Simmons is best viewed if you open it in another browser and resize to your heart's content. View it full page."
    embed: "

See the Pen Responsive Mondrian by Jen Simmons (@jensimmons) on CodePen.

" speakers: - ref: sayanee - ref: cheeaun - ref: chris - ref: zell - ref: thomas

I’m sure there’s a better way to do the CodePen embed, but I need some time to think it through. So the strategy here was to reference videos and speakers from the meetup data through their keys.

We access the data from the files in the _data folder using the syntax site.data.FILENAME[key], and to make things neater, I put this into a variable with the assign tag.

{% assign meetup = site.data.meetups[page.meetup] %}

We can then loop through the video entries in the meetup data file and use those values as keys in the videos data file like so:

{ for videos in meetup.videos %}
{% assign video = site.data.videos[videos.ref] %}

Within the loop, I ported in the original structure of each video entry. When this was done, I was kicking myself for not getting a move on and doing this sooner. Oh well, that’s what laziness will do to you. Better late than never.

<div class="c-video">
  <a class="c-video__link" href="{{ video.link }}">
    <img class="c-video__img" src="{{ site.url }}/assets/img/videos/talk-{{ page.meetup }}/{{ video.shortcode }}.jpg" srcset="{{ site.url }}/assets/img/videos/talk-{{ page.meetup }}/{{ video.shortcode }}@2x.jpg 2x" alt="Link to {{ video.title }} video"/>
  </a>
  <p class="c-video__desc">{{ video.description }}</p>
</div>

For the remaining sections, it was a matter of checking if the meetup entry contained the relevant key, for either CSS news, CSS colour or a CodePen embed using the if tag. For example, the CSS colour section looks like this:

{% if meetup.colour %}
{% assign colour = meetup.colour %}
<div class="c-colour">
{% if colour.text %}
<div class="c-swatch" style="background-color:{{ colour.hex }};color:{{ colour.text }}">
{% else %}
<div class="c-swatch" style="background-color:{{ colour.hex }}">
{% endif %}
  <div class="c-swatch__txt">
    <p>{{ colour.name }}</p>
    <p>{{ colour.hex }}</p>
    <p>{{ colour.rgba }}</p>
  </div>
</div>
<h4>CSS colour of the month</h4>
</div>
{% endif %}

Gotchas and TILs

Amidst the trial and error, and largely due to my lack of familiarity with the YAML format, I learnt that indentation and dash notation in the data files do make a significant interest. When I had multiple videos nested within a meetup entry, each video entry had the same key, and those had to be prepended with a dash, however, different keys did not need the dash.

So in a nutshell, this works:

13:
  videos:
    - ref: s1301
    - ref: s1302

But this does not:

13:
  videos:
    ref: s1301
    ref: s1302

There are also a number of useful helper variables for loops that help inject more logic into my templates. I’m using grid for the speakers section, and the fallback utilises flexbox. When there are less than 3 speakers, the alignment is flex-start, but when there are 3 or more speakers, the alignment is space-between. And this is applied with a CSS class.

The logic behind this is to catch the last iteration and count it, if that value is less than 3, there will be an extra alignment class like so:

{% if forloop.index > 2 and forloop.last %}
<div class="l-speakers c-speakers">
{% endif %}
{% if forloop.index < 3 and forloop.last %}
<div class="l-speakers c-speakers u-align-start">
{% endif %}

Wrapping up

The SingaporeCSS website is totally open source and hosted on GitHub so you can check it out if you are interested. And if you see something that can be improved on, pull requests are always welcome.

Have a great 2018, everyone! ๐Ÿ’ƒ