├── .gitignore ├── .prettierignore ├── .prettierrc ├── Building A Blog With Gatsby & GraphQL.md ├── LICENSE ├── README.md ├── Welcome file.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── Layout.js │ ├── Nav.js │ ├── Post.js │ ├── layout.css │ ├── nav.css │ └── post.css ├── pages │ ├── 2020-01-01-my-first-blog │ │ └── index.md │ ├── 2020-02-14-valentines-day │ │ └── index.md │ ├── 2020-04-01-april-fools │ │ └── index.md │ ├── about.js │ ├── blog.js │ ├── contact.js │ └── index.js └── templates │ ├── blogTemplate.css │ └── blogTemplate.js ├── tutorial ├── 01-gatsby-default-starter-.png ├── 02-home-page.png ├── 03-layout.png ├── 04-nav.png ├── 05-styling.png ├── 06-all-blogs.png ├── 07-console.png ├── 08-posts.png ├── 09-error.png ├── 10-post.png ├── 11-blog-final.png ├── 12-create-a-repo.png └── 13-netlify-new-project.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/.prettierrc -------------------------------------------------------------------------------- /Building A Blog With Gatsby & GraphQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/Building A Blog With Gatsby & GraphQL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /Welcome file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/Welcome file.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/Layout.js -------------------------------------------------------------------------------- /src/components/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/Nav.js -------------------------------------------------------------------------------- /src/components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/Post.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/nav.css -------------------------------------------------------------------------------- /src/components/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/components/post.css -------------------------------------------------------------------------------- /src/pages/2020-01-01-my-first-blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/2020-01-01-my-first-blog/index.md -------------------------------------------------------------------------------- /src/pages/2020-02-14-valentines-day/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/2020-02-14-valentines-day/index.md -------------------------------------------------------------------------------- /src/pages/2020-04-01-april-fools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/2020-04-01-april-fools/index.md -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/blog.js -------------------------------------------------------------------------------- /src/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/contact.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blogTemplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/templates/blogTemplate.css -------------------------------------------------------------------------------- /src/templates/blogTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/src/templates/blogTemplate.js -------------------------------------------------------------------------------- /tutorial/01-gatsby-default-starter-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/01-gatsby-default-starter-.png -------------------------------------------------------------------------------- /tutorial/02-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/02-home-page.png -------------------------------------------------------------------------------- /tutorial/03-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/03-layout.png -------------------------------------------------------------------------------- /tutorial/04-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/04-nav.png -------------------------------------------------------------------------------- /tutorial/05-styling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/05-styling.png -------------------------------------------------------------------------------- /tutorial/06-all-blogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/06-all-blogs.png -------------------------------------------------------------------------------- /tutorial/07-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/07-console.png -------------------------------------------------------------------------------- /tutorial/08-posts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/08-posts.png -------------------------------------------------------------------------------- /tutorial/09-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/09-error.png -------------------------------------------------------------------------------- /tutorial/10-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/10-post.png -------------------------------------------------------------------------------- /tutorial/11-blog-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/11-blog-final.png -------------------------------------------------------------------------------- /tutorial/12-create-a-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/12-create-a-repo.png -------------------------------------------------------------------------------- /tutorial/13-netlify-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/tutorial/13-netlify-new-project.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmabostian/gatsby-blog-tutorial/HEAD/yarn.lock --------------------------------------------------------------------------------