Migrate Blog from Jekyll to Eleventy

1. Why Jekyll in first place (2015)

The reason I've decided to use Jekyll was pretty straight-forward: Github Pages was released and they offered built-in Jekyll integration.

Back then there was no Github Actions or any kind of built-in Github CI, and I wanted to have a way to publish blog posts with the lowest possible barrier.

At that point in time I wasn't sure how frequently I would even use my own blog, and I thought it could be very closely to never. So my main goal was simplicity: A simple method to add blog posts, and almost zero maintenance.

I didn't have an own domain back then, so all I had to do was enable Github Pages for the repo and use some simple Jekyll basic theme.

2. Importing tumblr blog

I used to have a tumblr blog for my trip to Barbados (2013). I discovered Jekyll offers an import method, so I added all the blog posts from tumblr also to my personal blog.

That felt great. All of the sudden, I had control over my older blog posts in such an easy way.

3. Why Eleventy

When I realized I use the blog from time to time, I also discovered some things I didn't like about the way Github Pages or Jekyll works:

So I searched the web for some alternative, and I tried Hugo and Hexo. I explicitly did not want to use any js framework like Nuxt or Gatsby to keep the site very simple and fast.

For Hugo I disliked the third-party dependency integration. I would have liked to see a npm-dependencies.txt file or similar. However, you'd have to set up a npm repo and have hugo as a dependency, which is the wrong way round in my opinion.

For eleventy it works the same, but in this case it makes sense since eleventy is a npm dependency itself and it's the common way to install it. I liked it a bit better, also because I won't mix technologies too much. It is just npm then. That's why I set up a sample repository to check out if eleventy was good in my case.

4. Experience with Eleventy

I like the speed and the hot-reload. I dislike no built-in TypeScript and SCSS support (how dare you?!).

It can be added, but those are really parts I don't want to have as part of my blog repo. In best case it should only contain the real content and maybe the theming and no technical quirks like that.

I added TypeScript support by manually hacking a "plugin" for it. I used @swc/core and I really like how easy it was to integrate it's bundle function, which automatically resolves all imported dependencies and does the babeling stuff. It doesn't check your TypeScript for valid types and linting, so you need to run these tasks separately. I later exchanged swc for esbuild.

For SCSS I used a community plugin: eleventy-sass. I just had to add the node_modules folder to the loadPaths in order to resolve styles from packages.

Thumbnail integration felt weird. There is an official eleventy-img plugin, however I didn't find an easy way to access a single thumbnail image directly. Instead, they offer a way to have an img HTML tag with the srcset and sizes. I wrote some liquid shortcodes myself to address that just for my personal needs.

5. Summary

It took some time to convert all blog posts and layouts to the new style. Despite having too much non-content and code in the repo, I think it is a very good base to continue with. My main goal is still to have a low barrier to write new posts. That even got easier, thanks to image shortcodes, carousel etc. The markdown files look a bit cleaner, which is great.

I also used the occasion to update the mobile burger menu to look cleaner and have some css transitions. Some stuff is still missing (Resume, RSS feed and Barbados posts), but that can be easily added later.

Overall, I am very happy with the result.

undefined

6. Pros / Cons