├── .gitignore ├── www └── views │ └── integrations │ ├── index.html │ ├── app-one │ └── index.html │ └── app-two │ └── index.html ├── src └── views │ └── integrations │ ├── index.hbs │ ├── app-one │ └── index.hbs │ └── app-two │ └── index.hbs ├── eleventy.config.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /www/views/integrations/index.html: -------------------------------------------------------------------------------- 1 | 2 |

INTEGRATIONS

3 | -------------------------------------------------------------------------------- /www/views/integrations/app-one/index.html: -------------------------------------------------------------------------------- 1 | 2 |

INTEGRATIONS > ONE

3 | -------------------------------------------------------------------------------- /www/views/integrations/app-two/index.html: -------------------------------------------------------------------------------- 1 | 2 |

INTEGRATIONS > TWO

3 | -------------------------------------------------------------------------------- /src/views/integrations/index.hbs: -------------------------------------------------------------------------------- 1 | --- 2 | title: INTEGRATIONS 3 | --- 4 | 5 |

{{ title }}

6 | -------------------------------------------------------------------------------- /src/views/integrations/app-one/index.hbs: -------------------------------------------------------------------------------- 1 | --- 2 | title: INTEGRATIONS > ONE 3 | --- 4 | 5 |

{{ title }}

6 | -------------------------------------------------------------------------------- /src/views/integrations/app-two/index.hbs: -------------------------------------------------------------------------------- 1 | --- 2 | title: INTEGRATIONS > TWO 3 | --- 4 | 5 |

{{ title }}

6 | -------------------------------------------------------------------------------- /eleventy.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @param {import("@11ty/eleventy/src/UserConfig")} eleventyConfig 3 | * @returns {ReturnType} 4 | */ 5 | module.exports = function (eleventyConfig) { 6 | return { 7 | dir: { 8 | input: "src", 9 | output: "www", 10 | } 11 | }; 12 | }; 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "11ty-2886", 3 | "description": "", 4 | "version": "1.0.0", 5 | "author": "Peter deHaan ", 6 | "bugs": { 7 | "url": "https://github.com/pdehaan/11ty-2886/issues" 8 | }, 9 | "dependencies": { 10 | "@11ty/eleventy": "^2.0.1" 11 | }, 12 | "devDependencies": {}, 13 | "homepage": "https://github.com/pdehaan/11ty-2886#readme", 14 | "keywords": [], 15 | "license": "MPL-2.0", 16 | "main": "eleventy.config.js", 17 | "repository": { 18 | "type": "git", 19 | "url": "git+ssh://git@github.com/pdehaan/11ty-2886.git" 20 | }, 21 | "scripts": { 22 | "build": "eleventy", 23 | "test": "echo \"Error: no test specified\" && exit 1" 24 | } 25 | } 26 | --------------------------------------------------------------------------------