├── .gitignore ├── src └── index.njk ├── www └── index.html ├── eleventy.config.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/index.njk: -------------------------------------------------------------------------------- 1 | Hello! 2 | -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- 1 | Hello! 2 | -------------------------------------------------------------------------------- /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-2984", 3 | "description": "", 4 | "version": "1.0.0", 5 | "author": "Peter deHaan ", 6 | "bugs": { 7 | "url": "https://github.com/pdehaan/11ty-2984/issues" 8 | }, 9 | "dependencies": {}, 10 | "devDependencies": { 11 | "@11ty/eleventy": "^2.0.1" 12 | }, 13 | "homepage": "https://github.com/pdehaan/11ty-2984#readme", 14 | "keywords": [], 15 | "license": "MPL-2.0", 16 | "main": "eleventy.config.js", 17 | "repository": { 18 | "type": "git", 19 | "url": "git+https://github.com/pdehaan/11ty-2984.git" 20 | }, 21 | "scripts": { 22 | "build": "eleventy", 23 | "serve": "eleventy --serve", 24 | "test": "echo \"Error: no test specified\" && exit 1" 25 | } 26 | } 27 | --------------------------------------------------------------------------------