Build Awesome / Eleventy blades
Ultimate blade kit for 11ty (Build Awesome).
Table of Contents
Documentation
Install
npm install @anydigital/eleventy-blades
Then choose one of the following options:
A. All-in managed by Eleventy Blades:
Consider symlinking entire eleventy.config.js as a set-and-forget zero-config zero-maintenance solution:
ln -s ./node_modules/@anydigital/eleventy-blades/src/eleventy.config.js
Learn more: /11ty/tools/#base-config
Living examples:
B. Base config by Eleventy Blades with your additions/overrides in eleventy.config.js:
import baseConfig from "@anydigital/eleventy-blades/base-config";
export default function (eleventyConfig) {
baseConfig(eleventyConfig);
// Your additions/overrides
...
}
Living example: /hostfurl/minformhf/blob/main/eleventy.config.js
C. Plug-in Eleventy Blades in your existing eleventy.config.js:
import eleventyBladesPlugin from "@anydigital/eleventy-blades";
export default function (eleventyConfig) {
eleventyConfig.addPlugin(eleventyBladesPlugin, {
mdAutoRawTags: true,
mdAutoNl2br: true,
autoLinkFavicons: true,
siteData: true,
filters: ["attr_set", "attr_concat", ...],
});
}
D. Individual imports from Eleventy Blades in your eleventy.config.js:
import { siteData, mdAutoRawTags, mdAutoNl2br, autoLinkFavicons, attrSetFilter, attrConcatFilter, ... } from "@anydigital/eleventy-blades";
export default function (eleventyConfig) {
siteData(eleventyConfig);
mdAutoRawTags(eleventyConfig);
mdAutoNl2br(eleventyConfig);
autoLinkFavicons(eleventyConfig);
attrSetFilter(eleventyConfig);
attrConcatFilter(eleventyConfig);
...
}
Or use a fully preconfigured template as an alternative option:
Featured by:
/blog/11ty-bundle-83
/categories/getting-started
/posts/markdown-content-split-to-sections-in-eleventy-and-nunjucks/#:~:text=anydigital
/anydigital/awesome-11ty-build-awesome
Templating
PS: Best Minimal Starters for Build Awesome / 11ty as of Mar 2026
Awesome Eleventy ecosystem offers a wide variety of starters.
Not sure where to begin? Start with a minimal template:
| Repo | Stats |
npm Dependencies | Custom CSS |
Custom JS |
Custom Templates |
What's Included? |
|---|---|---|---|---|---|---|
| ~10 | ~30 lines ♻️ uses tailwind & blades[.css] | 0 ♻️ uses eleventy-blades | ~10 lines ♻️ uses blades[.njk] | Sveltia CMS | ||
| ~10 | ~300 lines | ~200 lines | ~200 lines uses .njk | |||
| ~15 | ~200 lines | ~300 lines | ~250 lines uses .njk | |||
| 3 ♻️ | 0 ♻️ uses pico.css & blades[.css] | 0 ♻️ uses eleventy-blades | ~15 lines ♻️ uses blades[.liquid|.njk] | Sveltia CMS | ||
| Not up-to-date: | ||||||
| ~10 | ~150 lines | ~130 lines | ~250 lines uses .njk | Sveltia CMS | ||
| Not so minimal: | ||||||
| ~25 ⚠️ | ~1000 lines ⚠️ | ~30 files ⚠️ | ~20 files | Front Matter CMS local use only | ||
| ~40 ⚠️ | ~40 files ⚠️ | ~40 files ⚠️ | ~40 files ⚠️ | |||
| ~5 ♻️ | ~25 files ⚠️ | ~15 files | ~15 files | |||
| ~15 | ~30 files ⚠️ | ~10 files | ~10 files |

Awesome Eleventy Build Awesome
A curated list of awesome Eleventy11ty (soon Build Awesome)
starters,
plugins,
tutorials,
sites
and more ↗
Eleventy is [slowly] becoming Build Awesome
- [2026-Mar-23] The Possum Mascot, now with additional Awesome in 11ty.dev/blog
- [2026-Mar-20] Eleventy v4.0.0-alpha.7 released with a note:
"this may be one of the last canary releases before you see some names start to change to Build Awesome"
- Official announcement in Eleventy blog
- AMA about Build Awesome, an Open Town Hall with Zach Leatherman on YouTube
- Upcoming Kickstarter campaign by Font Awesome
- Original Kickstarter campaign and why it was canceled
More on topic:
Starter projects
Projects that provide a quick starting point for Eleventy sites:
- Curated list of starters by 11tybundle
- Curated list of minimal starters by Anydigital
- Curated list of 11ty starters for Sveltia CMS
- A larger list of community starters
Modern v4 starters:
- [2026] Build Awesome Starter - Modern, lightweight Eleventy v4 starter with Tailwind or Pico; Blades, CMS and multisiting.
- [2026] Bladeswitch - Ultra-lightweight Blades starter compatible with BOTH Jekyll⇋and⇋11ty (Build Awesome) at the same time.
Minimally maintained:
- [2025] Base Blog - A starter repository for a blog web site using the Eleventy static site generator.
- [2025] Netlify Boilerplate - A boilerplate for building a simple website with the Eleventy static site generator.
Archived
- 📦 Eleventy One - A scaffold for a quick start building with the Eleventy SSG.
- 📦 Hylia - Hylia is a lightweight Eleventy starter kit with Netlify CMS pre-configured, so that you can one-click install a progressive, accessible blog in minutes.
- 📦 Deventy - A minimal 11ty starting point for building static websites with modern tools.
- 📦 Eleventy Starter Ghost - A starter template to build websites with Ghost & Eleventy.
- 📦 Eleventy Web Starter - A modern static website workflow using Eleventy, Tailwind CSS, Webpack and PostCSS.
- 📦 Eleventy Starter Boilerplate - 🚀 Eleventy Starter Boilerplate is production-ready with SEO-friendly for quickly starting a blog. ⚡️ Built with Eleventy, ESLint, Prettier, Webpack, PostCSS, Tailwind CSS.
- 📦 Eleventy Garden - A starter site for building a mind garden in Eleventy.
Plugins
- [2026] Table of Contents - Simple and configurable table of contents generation for Eleventy.
- [2026] Blades - A collection of helpful utilities and filters for Eleventy (11ty).
- [2025] Fetch - Utility to cache any remote asset: Image, Video, Web Font, CSS, JSON, etc.
- Explore more ↗
Tutorials and guides
- [2026] Learn Eleventy - This course is designed to give you a really solid understanding of Eleventy—even if you’ve never used it before.
- [2022] 11ty Second 11ty by Bryan Robinson on Youtube
- [2019] Eleventy (11ty) Tutorials by Bryan Robinson on Youtube
Templating:
- [2026] Build Awesome & Nunjucks Tricks - A curated collection of Eleventy (11ty) tricks, starters, command line tips, configuration snippets, and templating techniques.
- [2026] Liquid Tricks - A collection of useful Liquid templating tips & tricks.
Migration:
- [2018] Turn Jekyll up to Eleventy - An excellent article explaining the differences and similarities between Jekyll and 11ty.
Webmentions:
- [2019] Static Indieweb - Using Webmentions - How Max Böck added webmentions to his Eleventy site.
GraphQL:
- [2019] Consuming a headless CMS GraphQL API with Eleventy - Consuming data coming from a GraphQL API to generate static pages is as easy as using Markdown files.
Archived
Sites using Eleventy (Build Awesome)
- Benchmark web sites Built with Eleventy over time created by Zach Leatherman
- A showcase of websites built with the Eleventy static site generator by 11tybundle