eleventy
eleventy copied to clipboard
A simpler site generator. Transforms a directory of templates (of varying types) into HTML.
Fill in these sections: https://www.11ty.dev/docs/plugins/serverless/#re-use-build-time-collections https://www.11ty.dev/docs/plugins/serverless/#swap-to-dynamic-using-the-data-cascade-and-eleventycomputed https://www.11ty.dev/docs/plugins/serverless/#how-do-dynamic-templates-and-tags-work-together
**Describe the bug** When using ```html {%- for post in collections.post | reverse | limit(postsListLimit) -%} {{ post.data.title }} {{ post.date | dateReadable }} {% excerpt post %} {%- endfor...
**Is your feature request related to a problem? Please describe.** I have `index.njk` in which I have included a css & js file, when I save changes to those file...
Warn users if they use {% include %} in Liquid templates (or update docs to deprecate {% include %})
**Is your feature request related to a problem? Please describe.** I recently ran into the issue I filed here a while back: https://github.com/11ty/eleventy/issues/2000. At first I thought maybe Liquidjs had...
**Describe the bug** I use `pnpm` to manage my `node_modules` and have encountered a bug with Eleventy Serverless that occurs when the project is using `pnpm`, most likely due to...
Hello! I am seeing duplicate values in data properties that contain arrays in the data cascade that I would have expected to be merged when adding a global data property...
**Describe the bug** 11ty uses a frontmatter value instead of a global data file value, even though the frontmatter value is empty. **To Reproduce** Steps to reproduce the behavior: 1....
Using an empty project with this as a `test.liquid` file: ``` Testing {% edge "njk,md" %} Testing {% endedge %} ``` throws this error when there are _no_ `.njk` files...
**Is your feature request related to a problem? Please describe.** I have [a bunch of pages categorized by year and season](https://github.com/brown-band/website/tree/main/pages/scripts) on my website. I then want to display all...
**Is your feature request related to a problem? Please describe.** Often, you need to use absolute URLs instead of relative URLs. Examples of when this is needed include: - OpenGraph...