├── .gitignore ├── LICENSE ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── package.json └── src ├── layouts ├── index.css └── index.js ├── pages └── index.js └── templates └── recipe.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/package.json -------------------------------------------------------------------------------- /src/layouts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/src/layouts/index.css -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentacms/contenta_gatsby/HEAD/src/templates/recipe.js --------------------------------------------------------------------------------