├── .eleventy.js ├── .gitignore ├── LICENSE ├── README.md ├── github-readme.svg ├── netlify.toml ├── package.json └── src ├── _data ├── nav.json └── site.json ├── _includes ├── components │ ├── footer.njk │ ├── navigation.njk │ ├── search.njk │ └── taglist.njk ├── icons │ ├── close.svg │ ├── logo.svg │ ├── search.svg │ └── time.svg └── layouts │ ├── base.njk │ ├── home.njk │ ├── recipe.njk │ └── recipes-list.njk ├── about.md ├── admin ├── config.yml └── index.html ├── fonts ├── Vollkorn-Regular.woff ├── Vollkorn-Regular.woff2 ├── Vollkorn-SemiBold.woff └── Vollkorn-SemiBold.woff2 ├── img ├── about.jpg ├── favicon-alt.ico └── recipes │ ├── brownies.jpg │ ├── coconut-lentil-soup.jpg │ └── courgette-lemon-risotto.jpg ├── index.md ├── recipes.md ├── recipes ├── coconut-lentil-soup.md ├── courgette-lemon-risotto.md ├── recipes.json └── simple-brownies.md ├── scss ├── _global.scss ├── _layout.scss ├── _mixins.scss ├── _reset.scss ├── _typography.scss ├── _utility.scss ├── components │ ├── _about.scss │ ├── _card.scss │ ├── _home.scss │ ├── _nav.scss │ ├── _recipe-tags.scss │ ├── _recipe.scss │ └── _search.scss └── main.scss ├── search.njk └── tag.md /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | _site/ 3 | src/_includes/css/ 4 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /github-readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/github-readme.svg -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/package.json -------------------------------------------------------------------------------- /src/_data/nav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_data/nav.json -------------------------------------------------------------------------------- /src/_data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_data/site.json -------------------------------------------------------------------------------- /src/_includes/components/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/components/footer.njk -------------------------------------------------------------------------------- /src/_includes/components/navigation.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/components/navigation.njk -------------------------------------------------------------------------------- /src/_includes/components/search.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/components/search.njk -------------------------------------------------------------------------------- /src/_includes/components/taglist.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/components/taglist.njk -------------------------------------------------------------------------------- /src/_includes/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/icons/close.svg -------------------------------------------------------------------------------- /src/_includes/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/icons/logo.svg -------------------------------------------------------------------------------- /src/_includes/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/icons/search.svg -------------------------------------------------------------------------------- /src/_includes/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/icons/time.svg -------------------------------------------------------------------------------- /src/_includes/layouts/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/layouts/base.njk -------------------------------------------------------------------------------- /src/_includes/layouts/home.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/layouts/home.njk -------------------------------------------------------------------------------- /src/_includes/layouts/recipe.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/layouts/recipe.njk -------------------------------------------------------------------------------- /src/_includes/layouts/recipes-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/_includes/layouts/recipes-list.njk -------------------------------------------------------------------------------- /src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/about.md -------------------------------------------------------------------------------- /src/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/admin/config.yml -------------------------------------------------------------------------------- /src/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/admin/index.html -------------------------------------------------------------------------------- /src/fonts/Vollkorn-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/fonts/Vollkorn-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Vollkorn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/fonts/Vollkorn-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Vollkorn-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/fonts/Vollkorn-SemiBold.woff -------------------------------------------------------------------------------- /src/fonts/Vollkorn-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/fonts/Vollkorn-SemiBold.woff2 -------------------------------------------------------------------------------- /src/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/img/about.jpg -------------------------------------------------------------------------------- /src/img/favicon-alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/img/favicon-alt.ico -------------------------------------------------------------------------------- /src/img/recipes/brownies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/img/recipes/brownies.jpg -------------------------------------------------------------------------------- /src/img/recipes/coconut-lentil-soup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/img/recipes/coconut-lentil-soup.jpg -------------------------------------------------------------------------------- /src/img/recipes/courgette-lemon-risotto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/img/recipes/courgette-lemon-risotto.jpg -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/index.md -------------------------------------------------------------------------------- /src/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/recipes.md -------------------------------------------------------------------------------- /src/recipes/coconut-lentil-soup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/recipes/coconut-lentil-soup.md -------------------------------------------------------------------------------- /src/recipes/courgette-lemon-risotto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/recipes/courgette-lemon-risotto.md -------------------------------------------------------------------------------- /src/recipes/recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/recipes/recipes.json -------------------------------------------------------------------------------- /src/recipes/simple-brownies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/recipes/simple-brownies.md -------------------------------------------------------------------------------- /src/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_global.scss -------------------------------------------------------------------------------- /src/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_layout.scss -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_mixins.scss -------------------------------------------------------------------------------- /src/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_reset.scss -------------------------------------------------------------------------------- /src/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_typography.scss -------------------------------------------------------------------------------- /src/scss/_utility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/_utility.scss -------------------------------------------------------------------------------- /src/scss/components/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_about.scss -------------------------------------------------------------------------------- /src/scss/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_card.scss -------------------------------------------------------------------------------- /src/scss/components/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_home.scss -------------------------------------------------------------------------------- /src/scss/components/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_nav.scss -------------------------------------------------------------------------------- /src/scss/components/_recipe-tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_recipe-tags.scss -------------------------------------------------------------------------------- /src/scss/components/_recipe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_recipe.scss -------------------------------------------------------------------------------- /src/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/components/_search.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/scss/main.scss -------------------------------------------------------------------------------- /src/search.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/search.njk -------------------------------------------------------------------------------- /src/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maeligg/my-online-cookbook/HEAD/src/tag.md --------------------------------------------------------------------------------