├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .stylelintrc ├── LICENSE ├── README.md ├── content ├── assets │ ├── gatsby-icon.png │ └── profile-pic.png └── blog │ ├── hello-world │ ├── index.md │ └── salty_egg.jpg │ ├── hi-folks │ └── index.md │ └── my-second-post │ └── index.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby ├── createCategories.js ├── createPages.js └── createPosts.js ├── package.json ├── src ├── components │ ├── bio.js │ ├── layout.js │ └── seo.js ├── pages │ ├── 404.js │ └── index.js ├── templates │ ├── category.js │ ├── page.js │ └── post.js └── utils │ └── typography.js ├── static ├── favicon.ico └── robots.txt └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | static 3 | .cache 4 | content -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/README.md -------------------------------------------------------------------------------- /content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /content/assets/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/assets/profile-pic.png -------------------------------------------------------------------------------- /content/blog/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/blog/hello-world/index.md -------------------------------------------------------------------------------- /content/blog/hello-world/salty_egg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/blog/hello-world/salty_egg.jpg -------------------------------------------------------------------------------- /content/blog/hi-folks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/blog/hi-folks/index.md -------------------------------------------------------------------------------- /content/blog/my-second-post/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/content/blog/my-second-post/index.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby/createCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby/createCategories.js -------------------------------------------------------------------------------- /gatsby/createPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby/createPages.js -------------------------------------------------------------------------------- /gatsby/createPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/gatsby/createPosts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/components/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/components/bio.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/templates/category.js -------------------------------------------------------------------------------- /src/templates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/templates/page.js -------------------------------------------------------------------------------- /src/templates/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/templates/post.js -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/gatsby-wordpress-netlify-starter/HEAD/yarn.lock --------------------------------------------------------------------------------