├── .gitignore ├── www ├── pages │ ├── five │ │ └── index.html │ ├── four │ │ └── index.html │ ├── one │ │ └── index.html │ ├── six │ │ └── index.html │ ├── two │ │ └── index.html │ └── three │ │ └── index.html └── tags │ ├── bird │ └── index.html │ ├── dog │ └── index.html │ └── cat │ └── index.html ├── src ├── pages │ ├── six.njk │ ├── four.njk │ ├── one.njk │ ├── two.njk │ ├── five.njk │ ├── three.njk │ └── _tags.njk └── _data │ └── series.js ├── eleventy.config.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /www/pages/five/index.html: -------------------------------------------------------------------------------- 1 | 2 |
This is page five.
5 | -------------------------------------------------------------------------------- /www/pages/four/index.html: -------------------------------------------------------------------------------- 1 | 2 |This is page four.
5 | -------------------------------------------------------------------------------- /www/pages/one/index.html: -------------------------------------------------------------------------------- 1 | 2 |This is page one.
5 | -------------------------------------------------------------------------------- /www/pages/six/index.html: -------------------------------------------------------------------------------- 1 | 2 |This is page six.
5 | -------------------------------------------------------------------------------- /www/pages/two/index.html: -------------------------------------------------------------------------------- 1 | 2 |This is page two.
5 | -------------------------------------------------------------------------------- /www/pages/three/index.html: -------------------------------------------------------------------------------- 1 | 2 |This is page three.
5 | -------------------------------------------------------------------------------- /src/pages/six.njk: -------------------------------------------------------------------------------- 1 | --- 2 | title: Six 3 | --- 4 | 5 |This is page six.
8 | -------------------------------------------------------------------------------- /www/tags/bird/index.html: -------------------------------------------------------------------------------- 1 |birds are lousy pets.
4 |This is page four.
11 | -------------------------------------------------------------------------------- /src/pages/one.njk: -------------------------------------------------------------------------------- 1 | --- 2 | title: One 3 | tags: 4 | - cat 5 | - snake 6 | --- 7 | 8 |This is page one.
11 | -------------------------------------------------------------------------------- /src/pages/two.njk: -------------------------------------------------------------------------------- 1 | --- 2 | title: Two 3 | tags: 4 | - ferret 5 | - snake 6 | --- 7 | 8 |This is page two.
11 | -------------------------------------------------------------------------------- /src/pages/five.njk: -------------------------------------------------------------------------------- 1 | --- 2 | title: Five 3 | tags: 4 | - turkey 5 | - snake 6 | --- 7 | 8 |This is page five.
11 | -------------------------------------------------------------------------------- /src/pages/three.njk: -------------------------------------------------------------------------------- 1 | --- 2 | title: Three 3 | tags: 4 | - badger 5 | - dog 6 | --- 7 | 8 |This is page three.
11 | -------------------------------------------------------------------------------- /src/_data/series.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | {name: "cat", description: "this is something about a cat."}, 3 | {name: "dog", description: "this is a sentence about how dogs are better than cats."}, 4 | {name: "bird", description: "birds are lousy pets."}, 5 | ]; 6 | -------------------------------------------------------------------------------- /www/tags/dog/index.html: -------------------------------------------------------------------------------- 1 |this is a sentence about how dogs are better than cats.
4 |this is something about a cat.
4 |{{ tag.description }}
14 |