├── .babelrc ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── app.json ├── bin ├── cleanup.js ├── hello.js └── setup.js ├── contentful └── export.json ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── screenshot.jpg ├── setup.jpg ├── src ├── components │ ├── article-preview.js │ ├── article-preview.module.css │ ├── base.css │ ├── container.js │ ├── hero.js │ ├── hero.module.css │ ├── layout.js │ ├── navigation.js │ └── navigation.module.css ├── pages │ ├── blog.js │ ├── blog.module.css │ └── index.js └── templates │ ├── blog-post.js │ └── blog-post.module.css ├── static.json ├── static ├── avenir-400.woff2 ├── favicon.ico └── robots.txt └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 13.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/app.json -------------------------------------------------------------------------------- /bin/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/bin/cleanup.js -------------------------------------------------------------------------------- /bin/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/bin/hello.js -------------------------------------------------------------------------------- /bin/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/bin/setup.js -------------------------------------------------------------------------------- /contentful/export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/contentful/export.json -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/setup.jpg -------------------------------------------------------------------------------- /src/components/article-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/article-preview.js -------------------------------------------------------------------------------- /src/components/article-preview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/article-preview.module.css -------------------------------------------------------------------------------- /src/components/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/base.css -------------------------------------------------------------------------------- /src/components/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/container.js -------------------------------------------------------------------------------- /src/components/hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/hero.js -------------------------------------------------------------------------------- /src/components/hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/hero.module.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/navigation.js -------------------------------------------------------------------------------- /src/components/navigation.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/components/navigation.module.css -------------------------------------------------------------------------------- /src/pages/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/pages/blog.js -------------------------------------------------------------------------------- /src/pages/blog.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/pages/blog.module.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/templates/blog-post.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/src/templates/blog-post.module.css -------------------------------------------------------------------------------- /static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/static.json -------------------------------------------------------------------------------- /static/avenir-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/static/avenir-400.woff2 -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/gatsby-contentful-starter/HEAD/yarn.lock --------------------------------------------------------------------------------