eleventy
eleventy copied to clipboard
A simpler site generator. Transforms a directory of templates (of varying types) into HTML.
### Operating system Linux - Ubuntu ### Eleventy v3.0.0 and v3.0.1-alpha-5 ### Describe the bug My WebC looks like this: ```html const title = meta.title; ``` And it is included...
Render plugin has scoped data: https://www.11ty.dev/docs/plugins/render/#pass-in-data However, I’d like to add access to global data for all supported template languages for the render plugin (Nunjucks, Liquid, 11ty.js), perhaps re-using the...
Partial uses collection, which include partials - js/css includes in nested partials aren't loading
### Operating system Windows ### Eleventy 3.0.0 ### Describe the bug I have a page that uses a partial and this partial loops through a collection "docs". ``` {% set...
### Operating system Fedora 42 ### Eleventy 3.0.1-alpha.5 ### Describe the bug When using locale_url I am seeing inconsistent URLs across languages. In the template my code looks like this:...
https://nodejs.org/api/fs.html#fspromisesglobpattern-options Available in Node 22+ and is currently an Experimental API. Follow up to #3167 and #3680
### Operating system macOS Ventura 13.3.1 ### Eleventy 2.0.1 ### Describe the bug When an include calls an async shortcode and that include is then included in a for loop...
Surfaced in https://github.com/11ty/11ty.io/pull/216 by @tinymachine
This is related to #553 I’ve been attempting to create a custom taxonomy with Eleventy. My goals: * Have a separate taxonomy just for a specific collection (aka content type)...
I'm using Forestry to edit content for a site generated with Eleventy, and it manages drafts with a YFM variable named `published` with values `false` and `true`. I would like...
Is there a way to provide data customized for each input file? Something like this perhaps? ```js module.exports = (data) => { otherPath: computeOtherPath(data.page.inputPath), }; ```