Useful @11ty filters for #Nunjucks / #Liquid via https://github.com/anydigital/eleventy-blades plugin:

- attr_concat
- attr_includes
- attr_set
- fetch
- if
- merge
- remove_tag
- strip_tag
- section
- unindent

Docs: https://blades.ninja/build-awesome-11ty/filters/

GitHub - anydigital/eleventy-blades: Ultimate blade kit for 11ty (Build Awesome) 🥷

Ultimate blade kit for 11ty (Build Awesome) 🥷. Contribute to anydigital/eleventy-blades development by creating an account on GitHub.

GitHub
Creating an Alphabetical Tag Page feat. Nunjucks Pitfalls

I transformed a messy tag list into an organized alphabetical sections, and there were a surprising amount of gotchas I encountered along the way.

brennan.day

Quesby 0.1.2 is now available!

A lightweight static website boilerplate built on Eleventy and Nunjucks.

https://github.com/quesby/quesby-boilerplate

#11ty #webdev #nunjucks

Yet another #TIL with @11ty

It looks like data coming from global data files is not available inside #Nunjucks macros… 😭

(maybe I already knew this, but I forgot, and lost a few hours today…)

PicoSSG v6 is out! 🎉

PicoSSG is a #simple #static #site #generator (or #SSG) that allows you to build static sites with ease. It is designed to be #minimal, fast, and easy to use, making it perfect for small projects or personal blogs.

It has just two features and a bit more than 500 lines of code. It can convert #markdown into HTML and process #Nunjucks templates.

https://picostitch.com/blog/2025/08/picossg-v6/

#simple #web #tools

PicoSSG v6 is out! 🎉 – The Anti-Framework Static Site Generator

<style> p img { border: 1px solid #ccc; border-radius: 4px; box-shadow: 0 1em 1em rgba(0, 0, 0, 0.1); text-align: center; width: 80%; margin-left: 10%; } </style>

picostitch - crafting (and) JavaScript

Another weird issue with #Eleventy #Nunjucks templates…

I have these two lines:

{% set photos = page.data.photos %}
{{ page.data.photos | length }} / {{ photos | length }}

The result is:

0 / 24

What the… 🤨

EDIT: the issue was me all along… 😞

https://mamot.fr/@nhoizey/115028557519497415

Nicolas Hoizey (@[email protected])

@[email protected] ooooooh, I feel so dumb! In the layout for the page, `photos` is directly available, it's not in `page.data.photos`! 🤪 My assignment was not required, and actually did nothing. I don't know why I thought data coming from eleventyComputed in a directory data file was always in page.data.… 🤷‍♂️

Mamot - Le Mastodon de La Quadrature du Net
I refactored my personal website on @11ty from #Nunjucks to #Vento, and I have some tips for you if you want to do the same. It's like a guide but like… less structured and more pun-riddled. Check it out: https://chriskirknielsen.com/blog/from-nunjucks-to-vento-in-eleventy-migration-guide/
From Nunjucks to Vento in Eleventy: a migration guide (kinda) | chriskirknielsen

A few tips to refactor your njk into vto.

chriskirknielsen
Calculating yearsSince using a Nunjucks filter in Eleventy

Replacing an imported dependency with vanilla javascript

thomasrigby.com

PicoSSG – A boring static site generator. Just as much tech as it needs.

Static site generators – sounds boring. But most aren't, because they try to do everything and end up big and complex.
PicoSSG is intentionally boring. It processes *.md and *.njk files, copies everything else as-is. Around 300 lines of plain JavaScript. Boring. As it should be.

Think of it as #cp + #markdown + #nunjucks. That’s it. Boring.

My blog picostitch.com is already built with it.

https://www.npmjs.com/package/@wolframkriesing/picossg

#ssg

@wolframkriesing/picossg

The pico static side generator, the simplest one I ever wanted and hopefully 'found'.. Latest version: 3.0.1, last published: 2 minutes ago. Start using @wolframkriesing/picossg in your project by running `npm i @wolframkriesing/picossg`. There are no other projects in the npm registry using @wolframkriesing/picossg.

npm
Automagically generating a robots.txt file in Eleventy using data and Nunjucks

Writing some code to make better a thing I've been doing manually.

thomasrigby.com