├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── project-1 ├── chapter-1 │ ├── end │ │ ├── assets │ │ │ └── css │ │ │ │ └── style.css │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── _templates │ │ │ ├── includes │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── navigation.html │ │ │ │ └── triptych.html │ │ │ └── layouts │ │ │ │ └── base.html │ │ │ ├── about.md │ │ │ └── index.html │ └── start │ │ ├── about.html │ │ ├── assets │ │ └── css │ │ │ └── style.css │ │ └── index.html └── chapter-2 │ ├── end │ ├── assets │ │ └── css │ │ │ └── style.css │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _data │ │ └── site.js │ │ ├── _templates │ │ ├── includes │ │ │ ├── banner.html │ │ │ ├── card.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── navigation.html │ │ └── layouts │ │ │ └── base.html │ │ ├── about │ │ ├── about.json │ │ ├── history.md │ │ └── index.md │ │ ├── index.html │ │ └── index.json │ └── start │ ├── assets │ └── css │ │ └── style.css │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ ├── _templates │ ├── includes │ │ ├── footer.html │ │ ├── header.html │ │ ├── navigation.html │ │ └── triptych.html │ └── layouts │ │ └── base.html │ ├── about.md │ └── index.html ├── project-2 ├── chapter-4 │ ├── end │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── _templates │ │ │ ├── includes │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ └── pagination.html │ │ │ └── layouts │ │ │ │ ├── base.html │ │ │ │ └── post.html │ │ │ ├── category.html │ │ │ ├── index.html │ │ │ └── posts │ │ │ ├── my-first-blog-post.md │ │ │ ├── my-second-blog-post.md │ │ │ ├── my-third-post.md │ │ │ ├── posts.11tydata.js │ │ │ └── posts.html │ └── start │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── pagination.html │ │ └── layouts │ │ │ ├── base.html │ │ │ └── post.html │ │ ├── category.html │ │ └── index.html └── chapter-5 │ ├── end │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── pagination.html │ │ └── layouts │ │ │ ├── base.html │ │ │ └── post.html │ │ ├── category.html │ │ ├── index.html │ │ └── posts │ │ ├── my-first-blog-post.md │ │ ├── my-second-blog-post.md │ │ ├── my-third-post.md │ │ ├── posts.11tydata.js │ │ └── posts.html │ └── start │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ ├── _templates │ ├── includes │ │ ├── footer.html │ │ ├── header.html │ │ └── pagination.html │ └── layouts │ │ ├── base.html │ │ └── post.html │ ├── category.html │ ├── index.html │ └── posts │ ├── my-first-blog-post.md │ ├── my-second-blog-post.md │ ├── my-third-post.md │ ├── posts.11tydata.js │ └── posts.html ├── project-3 ├── end │ ├── .gitignore │ ├── assets │ │ └── style.css │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ └── header.html │ │ └── layouts │ │ │ ├── base.html │ │ │ ├── full.html │ │ │ ├── gallery.html │ │ │ ├── home.html │ │ │ ├── post.html │ │ │ └── stacked.html │ │ ├── index.html │ │ ├── posts.html │ │ └── posts │ │ ├── post-1 │ │ ├── index.md │ │ ├── placekitten.jpeg │ │ ├── snow-kitten.jpeg │ │ └── vertical-kitten.jpeg │ │ ├── post-2 │ │ ├── index.md │ │ ├── placekitten-2 copy.jpeg │ │ ├── placekitten-2.jpeg │ │ ├── placekitten.jpeg │ │ └── snow-kitten.jpeg │ │ ├── post-3 │ │ ├── index.md │ │ └── placekitten-2 copy.jpeg │ │ └── posts.11tydata.js └── start │ ├── assets │ └── style.css │ ├── eleventy.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ ├── _templates │ ├── includes │ │ ├── footer.html │ │ └── header.html │ └── layouts │ │ ├── base.html │ │ └── home.html │ ├── index.html │ └── posts.html ├── project-4 ├── .DS_Store ├── chapter-7 │ ├── end │ │ ├── assets │ │ │ ├── media │ │ │ │ └── test-audio.mp3 │ │ │ └── style.css │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── _data │ │ │ └── site.json │ │ │ ├── _templates │ │ │ ├── includes │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ └── player.html │ │ │ └── layouts │ │ │ │ ├── base.html │ │ │ │ └── home.html │ │ │ ├── episodes.html │ │ │ ├── episodes │ │ │ ├── episodes.json │ │ │ └── my-first-episode.md │ │ │ ├── feed.njk │ │ │ └── index.html │ └── start │ │ ├── assets │ │ ├── media │ │ │ └── test-audio.mp3 │ │ └── style.css │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── _data │ │ └── site.json │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── player.html │ │ └── layouts │ │ │ ├── base.html │ │ │ └── home.html │ │ ├── episodes.html │ │ ├── episodes │ │ ├── episodes.json │ │ └── my-first-episode.md │ │ └── index.html ├── chapter-8 │ ├── .DS_Store │ ├── end │ │ ├── .DS_Store │ │ ├── .gitignore │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── media │ │ │ │ └── test-audio.mp3 │ │ │ └── style.css │ │ ├── eleventy.config.js │ │ ├── netlify.toml │ │ ├── netlify │ │ │ └── functions │ │ │ │ └── search │ │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── _data │ │ │ └── site.json │ │ │ ├── _templates │ │ │ ├── includes │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ └── player.html │ │ │ └── layouts │ │ │ │ ├── base.html │ │ │ │ └── home.html │ │ │ ├── algoliaIndex.njk │ │ │ ├── episodes.html │ │ │ ├── episodes │ │ │ ├── episodes.json │ │ │ ├── my-first-episode.md │ │ │ └── my-second-episode.md │ │ │ ├── feed.njk │ │ │ ├── index.html │ │ │ └── search.html │ └── start │ │ ├── assets │ │ ├── media │ │ │ └── test-audio.mp3 │ │ └── style.css │ │ ├── eleventy.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ ├── _data │ │ └── site.json │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── player.html │ │ └── layouts │ │ │ ├── base.html │ │ │ └── home.html │ │ ├── episodes.html │ │ ├── episodes │ │ ├── episodes.json │ │ └── my-first-episode.md │ │ ├── feed.njk │ │ └── index.html └── chapter-9 │ ├── .DS_Store │ ├── end │ ├── .DS_Store │ ├── .gitignore │ ├── assets │ │ ├── .DS_Store │ │ ├── media │ │ │ └── test-audio.mp3 │ │ └── style.css │ ├── eleventy.config.js │ ├── netlify.toml │ ├── netlify │ │ └── functions │ │ │ └── search │ │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── _data │ │ └── site.json │ │ ├── _templates │ │ ├── includes │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── player.html │ │ └── layouts │ │ │ ├── base.html │ │ │ └── home.html │ │ ├── algoliaIndex.njk │ │ ├── episodes.html │ │ ├── feed.njk │ │ ├── hygraphEpisodes.html │ │ ├── index.html │ │ └── search.html │ └── start │ ├── .DS_Store │ ├── .gitignore │ ├── assets │ ├── .DS_Store │ ├── media │ │ └── test-audio.mp3 │ └── style.css │ ├── eleventy.config.js │ ├── netlify.toml │ ├── package-lock.json │ ├── package.json │ └── src │ ├── _data │ └── site.json │ ├── _templates │ ├── includes │ │ ├── footer.html │ │ ├── header.html │ │ └── player.html │ └── layouts │ │ ├── base.html │ │ └── home.html │ ├── algoliaIndex.njk │ ├── episodes.html │ ├── episodes │ ├── episodes.json │ ├── my-first-episode.md │ └── my-second-episode.md │ ├── feed.njk │ ├── index.html │ └── search.html └── project-5 ├── end ├── eleventy-plugin-algolia-helper │ ├── .gitignore │ ├── .npmignore │ ├── _includes │ │ └── base.html │ ├── eleventy.config.js │ ├── index.md │ ├── package-lock.json │ └── package.json ├── eleventy-plugin-hygraph-data │ ├── .env │ ├── .npmignore │ ├── _includes │ │ └── base.html │ ├── eleventy.config.js │ ├── index.md │ ├── package-lock.json │ └── package.json └── eleventy-plugin-media-helpers │ ├── .npmignore │ ├── _includes │ └── base.html │ ├── eleventy.config.js │ ├── index.md │ ├── package-lock.json │ └── package.json └── start ├── eleventy-plugin-algolia-helper ├── .eleventy.js ├── _includes │ └── base.html ├── index.md └── package.json ├── eleventy-plugin-hygraph-data ├── .eleventy.js ├── _includes │ └── base.html ├── index.md └── package.json └── eleventy-plugin-media-helpers ├── .eleventy.js ├── _includes └── base.html ├── index.md └── package.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/package.json -------------------------------------------------------------------------------- /project-1/chapter-1/end/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/assets/css/style.css -------------------------------------------------------------------------------- /project-1/chapter-1/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/eleventy.config.js -------------------------------------------------------------------------------- /project-1/chapter-1/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/package-lock.json -------------------------------------------------------------------------------- /project-1/chapter-1/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/package.json -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/_templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/_templates/includes/navigation.html -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/_templates/includes/triptych.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/_templates/includes/triptych.html -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/about.md -------------------------------------------------------------------------------- /project-1/chapter-1/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/end/src/index.html -------------------------------------------------------------------------------- /project-1/chapter-1/start/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/start/about.html -------------------------------------------------------------------------------- /project-1/chapter-1/start/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/start/assets/css/style.css -------------------------------------------------------------------------------- /project-1/chapter-1/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-1/start/index.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/assets/css/style.css -------------------------------------------------------------------------------- /project-1/chapter-2/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/eleventy.config.js -------------------------------------------------------------------------------- /project-1/chapter-2/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/package-lock.json -------------------------------------------------------------------------------- /project-1/chapter-2/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/package.json -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_data/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_data/site.js -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/includes/banner.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/includes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/includes/card.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/includes/navigation.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/about/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/about/about.json -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/about/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/about/history.md -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/about/index.md -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/index.html -------------------------------------------------------------------------------- /project-1/chapter-2/end/src/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/end/src/index.json -------------------------------------------------------------------------------- /project-1/chapter-2/start/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/assets/css/style.css -------------------------------------------------------------------------------- /project-1/chapter-2/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/eleventy.config.js -------------------------------------------------------------------------------- /project-1/chapter-2/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/package-lock.json -------------------------------------------------------------------------------- /project-1/chapter-2/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/package.json -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/_templates/includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/_templates/includes/navigation.html -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/_templates/includes/triptych.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/_templates/includes/triptych.html -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/about.md -------------------------------------------------------------------------------- /project-1/chapter-2/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-1/chapter-2/start/src/index.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/eleventy.config.js -------------------------------------------------------------------------------- /project-2/chapter-4/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/package-lock.json -------------------------------------------------------------------------------- /project-2/chapter-4/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/package.json -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/_templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/_templates/includes/pagination.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/_templates/layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/_templates/layouts/post.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/category.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/index.html -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/posts/my-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/posts/my-first-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/posts/my-second-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/posts/my-second-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/posts/my-third-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/posts/my-third-post.md -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/posts/posts.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/posts/posts.11tydata.js -------------------------------------------------------------------------------- /project-2/chapter-4/end/src/posts/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/end/src/posts/posts.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/eleventy.config.js -------------------------------------------------------------------------------- /project-2/chapter-4/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/package-lock.json -------------------------------------------------------------------------------- /project-2/chapter-4/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/package.json -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/_templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/_templates/includes/pagination.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/_templates/layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/_templates/layouts/post.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/category.html -------------------------------------------------------------------------------- /project-2/chapter-4/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-4/start/src/index.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/eleventy.config.js -------------------------------------------------------------------------------- /project-2/chapter-5/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/package-lock.json -------------------------------------------------------------------------------- /project-2/chapter-5/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/package.json -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/_templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/_templates/includes/pagination.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/_templates/layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/_templates/layouts/post.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/category.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/index.html -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/posts/my-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/posts/my-first-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/posts/my-second-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/posts/my-second-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/posts/my-third-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/posts/my-third-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/posts/posts.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/posts/posts.11tydata.js -------------------------------------------------------------------------------- /project-2/chapter-5/end/src/posts/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/end/src/posts/posts.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/eleventy.config.js -------------------------------------------------------------------------------- /project-2/chapter-5/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/package-lock.json -------------------------------------------------------------------------------- /project-2/chapter-5/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/package.json -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/_templates/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/_templates/includes/pagination.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/_templates/layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/_templates/layouts/post.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/category.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/index.html -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/posts/my-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/posts/my-first-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/posts/my-second-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/posts/my-second-blog-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/posts/my-third-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/posts/my-third-post.md -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/posts/posts.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/posts/posts.11tydata.js -------------------------------------------------------------------------------- /project-2/chapter-5/start/src/posts/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-2/chapter-5/start/src/posts/posts.html -------------------------------------------------------------------------------- /project-3/end/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules -------------------------------------------------------------------------------- /project-3/end/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/assets/style.css -------------------------------------------------------------------------------- /project-3/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/eleventy.config.js -------------------------------------------------------------------------------- /project-3/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/package-lock.json -------------------------------------------------------------------------------- /project-3/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/package.json -------------------------------------------------------------------------------- /project-3/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/full.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/gallery.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/post.html -------------------------------------------------------------------------------- /project-3/end/src/_templates/layouts/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/_templates/layouts/stacked.html -------------------------------------------------------------------------------- /project-3/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/index.html -------------------------------------------------------------------------------- /project-3/end/src/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts.html -------------------------------------------------------------------------------- /project-3/end/src/posts/post-1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-1/index.md -------------------------------------------------------------------------------- /project-3/end/src/posts/post-1/placekitten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-1/placekitten.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-1/snow-kitten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-1/snow-kitten.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-1/vertical-kitten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-1/vertical-kitten.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-2/index.md -------------------------------------------------------------------------------- /project-3/end/src/posts/post-2/placekitten-2 copy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-2/placekitten-2 copy.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-2/placekitten-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-2/placekitten-2.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-2/placekitten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-2/placekitten.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-2/snow-kitten.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-2/snow-kitten.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/post-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-3/index.md -------------------------------------------------------------------------------- /project-3/end/src/posts/post-3/placekitten-2 copy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/post-3/placekitten-2 copy.jpeg -------------------------------------------------------------------------------- /project-3/end/src/posts/posts.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/end/src/posts/posts.11tydata.js -------------------------------------------------------------------------------- /project-3/start/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-3/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/eleventy.config.js -------------------------------------------------------------------------------- /project-3/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/package-lock.json -------------------------------------------------------------------------------- /project-3/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/package.json -------------------------------------------------------------------------------- /project-3/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-3/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-3/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-3/start/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-3/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/index.html -------------------------------------------------------------------------------- /project-3/start/src/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-3/start/src/posts.html -------------------------------------------------------------------------------- /project-4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-7/end/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-7/end/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-7/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-7/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-7/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/package.json -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/episodes/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/episodes/episodes.json -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/episodes/my-first-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/episodes/my-first-episode.md -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/feed.njk -------------------------------------------------------------------------------- /project-4/chapter-7/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/end/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-7/start/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-7/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-7/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-7/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/package.json -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/episodes/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/episodes/episodes.json -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/episodes/my-first-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/episodes/my-first-episode.md -------------------------------------------------------------------------------- /project-4/chapter-7/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-7/start/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-8/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-8/end/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-8/end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/.gitignore -------------------------------------------------------------------------------- /project-4/chapter-8/end/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/assets/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-8/end/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-8/end/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-8/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-8/end/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/netlify.toml -------------------------------------------------------------------------------- /project-4/chapter-8/end/netlify/functions/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/netlify/functions/search/index.js -------------------------------------------------------------------------------- /project-4/chapter-8/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-8/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/package.json -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/algoliaIndex.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/algoliaIndex.njk -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/episodes/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/episodes/episodes.json -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/episodes/my-first-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/episodes/my-first-episode.md -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/episodes/my-second-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/episodes/my-second-episode.md -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/feed.njk -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-8/end/src/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/end/src/search.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-8/start/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-8/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-8/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-8/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/package.json -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/episodes/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/episodes/episodes.json -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/episodes/my-first-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/episodes/my-first-episode.md -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/feed.njk -------------------------------------------------------------------------------- /project-4/chapter-8/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-8/start/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-9/end/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-9/end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/.gitignore -------------------------------------------------------------------------------- /project-4/chapter-9/end/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/assets/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-9/end/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-9/end/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-9/end/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-9/end/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/netlify.toml -------------------------------------------------------------------------------- /project-4/chapter-9/end/netlify/functions/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/netlify/functions/search/index.js -------------------------------------------------------------------------------- /project-4/chapter-9/end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-9/end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/package.json -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/algoliaIndex.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/algoliaIndex.njk -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/feed.njk -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/hygraphEpisodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/hygraphEpisodes.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-9/end/src/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/end/src/search.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-9/start/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/.gitignore -------------------------------------------------------------------------------- /project-4/chapter-9/start/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/assets/.DS_Store -------------------------------------------------------------------------------- /project-4/chapter-9/start/assets/media/test-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/assets/media/test-audio.mp3 -------------------------------------------------------------------------------- /project-4/chapter-9/start/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-4/chapter-9/start/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/eleventy.config.js -------------------------------------------------------------------------------- /project-4/chapter-9/start/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/netlify.toml -------------------------------------------------------------------------------- /project-4/chapter-9/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/package-lock.json -------------------------------------------------------------------------------- /project-4/chapter-9/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/package.json -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_data/site.json -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_templates/includes/footer.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_templates/includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_templates/includes/header.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_templates/includes/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_templates/includes/player.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_templates/layouts/base.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/_templates/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/_templates/layouts/home.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/algoliaIndex.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/algoliaIndex.njk -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/episodes.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/episodes/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/episodes/episodes.json -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/episodes/my-first-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/episodes/my-first-episode.md -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/episodes/my-second-episode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/episodes/my-second-episode.md -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/feed.njk -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/index.html -------------------------------------------------------------------------------- /project-4/chapter-9/start/src/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-4/chapter-9/start/src/search.html -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/.npmignore: -------------------------------------------------------------------------------- 1 | _site 2 | .env 3 | index.md 4 | _includes -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-algolia-helper/_includes/base.html -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-algolia-helper/eleventy.config.js -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-algolia-helper/index.md -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-algolia-helper/package-lock.json -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-algolia-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-algolia-helper/package.json -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/.env: -------------------------------------------------------------------------------- 1 | HYGRAPH_ENDPOINT="https://api-us-east-1-shared-usea1-02.hygraph.com/v2/cldg3hw2w0ero01uq9hbhel4l/master" -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/.npmignore: -------------------------------------------------------------------------------- 1 | _site 2 | .env 3 | index.md 4 | _includes -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-hygraph-data/_includes/base.html -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-hygraph-data/eleventy.config.js -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-hygraph-data/index.md -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-hygraph-data/package-lock.json -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-hygraph-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-hygraph-data/package.json -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/.npmignore: -------------------------------------------------------------------------------- 1 | _site 2 | .env 3 | index.md 4 | _includes -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-media-helpers/_includes/base.html -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-media-helpers/eleventy.config.js -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-media-helpers/index.md -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-media-helpers/package-lock.json -------------------------------------------------------------------------------- /project-5/end/eleventy-plugin-media-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/end/eleventy-plugin-media-helpers/package.json -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-algolia-helper/.eleventy.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = function(eleventyConfig) { 4 | 5 | 6 | } -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-algolia-helper/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-algolia-helper/_includes/base.html -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-algolia-helper/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.html" 3 | --- 4 | 5 | # Eleventy Plugin Algolia Helper Test -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-algolia-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-algolia-helper/package.json -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-hygraph-data/.eleventy.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = function(eleventyConfig) { 4 | 5 | 6 | } -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-hygraph-data/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-hygraph-data/_includes/base.html -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-hygraph-data/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.html" 3 | --- 4 | 5 | # Eleventy Plugin Hygraph Data Test -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-hygraph-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-hygraph-data/package.json -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-media-helpers/.eleventy.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = function(eleventyConfig) { 4 | 5 | 6 | } -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-media-helpers/_includes/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-media-helpers/_includes/base.html -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-media-helpers/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: "base.html" 3 | --- 4 | 5 | # Eleventy Plugin Media Helpers Test -------------------------------------------------------------------------------- /project-5/start/eleventy-plugin-media-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Eleventy-by-Example/HEAD/project-5/start/eleventy-plugin-media-helpers/package.json --------------------------------------------------------------------------------