eleventy
eleventy copied to clipboard
A simpler site generator. Transforms a directory of templates (of varying types) into HTML.
I'm trying to use @MadeByMike's `addWatchTarget()` to react to Sass files changes, but it does nothing. Here's what I've put in my `.eleventy.js` file: ```javascript eleventyConfig.addWatchTarget("src/_assets/**/*.scss"); ``` And here are...
This PR adds an option to skip the first n items of a pagination. This allows usecases as described in #1036, where one might want to show the first n...
Currently only .eleventy.js is supported as the default config file. This PR implements a possible solution for multiple config file. It intentionally just implements support for multiple default config files....
Hi, im trying to do a blog main page, where i will have 10 'latest' entries. What i would like for pagination is to have this 10 entries on main...
**Describe the bug** Per the Liquidjs docs, [the {% include %} tag is deprecated](https://liquidjs.com/tags/include.html) and it's recommended that we use [the {% render %} tag](https://liquidjs.com/tags/render.html) instead. See also: https://github.com/11ty/eleventy/issues/2411. Unfortunately,...
addJavaScriptFunction "render" interferes with .11ty.js templates (e. g. with tagNameFile: "render")
I tried to use the latest feature of `tagNameFile: "render"` with the render plugin and and got confusing error messages. I digged a bit deeper and found out, that if...
Unittests threw errors on windows because of some newline errors. This happens with the most common git configs on windows. This fix always checks for \n newlines in excerpts and...
Eleventy’s server (`--serve`) fails to launch when `--input` is the current directory and `--output` is a directory in the parent directory. (Compilation – i.e., `write()` – and `--watch` succeed.) Similar...
When `--input` and `--output` locations are specified while running Eleventy from the parent directory of an Eleventy site, site compilation fails. ## To Reproduce 1. Install Eleventy. ```sh npm i...
Eleventy’s server (`--serve`) fails to launch when `--input` is the current directory and `--output` is a directory in the parent directory. (Compilation – i.e., `write()` – and `--watch` succeed.) In...