├── .gitignore ├── .gitmodules ├── README.md ├── package.json ├── site ├── .prettierrc ├── LICENSE ├── content │ └── assets │ │ ├── gatsby-icon.png │ │ └── profile-pic.png ├── gatsby-config.js ├── gatsby-node.js ├── gatsby │ ├── createBeerPosts.js │ └── createPosts.js ├── package.json ├── src │ ├── components │ │ ├── Bio │ │ │ └── index.js │ │ ├── PostEntry │ │ │ └── index.js │ │ └── layout.js │ ├── pages │ │ ├── 404.js │ │ └── page.js │ ├── templates │ │ ├── beer.js │ │ ├── beers.js │ │ ├── blog.js │ │ └── post.js │ └── utils │ │ └── typography.js └── static │ └── favicon.ico ├── theme ├── LICENSE ├── README.md ├── docker-compose.yml ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-ssr.js ├── index.js ├── package.json ├── sample.env ├── src │ ├── apollo │ │ └── client.js │ ├── components │ │ └── withPreview │ │ │ └── index.js │ ├── pages │ │ ├── 404.js │ │ └── preview.js │ └── utils │ │ └── typography.js ├── static │ ├── favicon.ico │ └── robots.txt └── wp-headless-theme │ ├── functions.php │ ├── inc │ ├── admin.php │ ├── headers.php │ ├── log.php │ └── post-type.php │ ├── index.php │ └── style.css └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/package.json -------------------------------------------------------------------------------- /site/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/.prettierrc -------------------------------------------------------------------------------- /site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/LICENSE -------------------------------------------------------------------------------- /site/content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /site/content/assets/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/content/assets/profile-pic.png -------------------------------------------------------------------------------- /site/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/gatsby-config.js -------------------------------------------------------------------------------- /site/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/gatsby-node.js -------------------------------------------------------------------------------- /site/gatsby/createBeerPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/gatsby/createBeerPosts.js -------------------------------------------------------------------------------- /site/gatsby/createPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/gatsby/createPosts.js -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/package.json -------------------------------------------------------------------------------- /site/src/components/Bio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/components/Bio/index.js -------------------------------------------------------------------------------- /site/src/components/PostEntry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/components/PostEntry/index.js -------------------------------------------------------------------------------- /site/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/components/layout.js -------------------------------------------------------------------------------- /site/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/pages/404.js -------------------------------------------------------------------------------- /site/src/pages/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/pages/page.js -------------------------------------------------------------------------------- /site/src/templates/beer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/templates/beer.js -------------------------------------------------------------------------------- /site/src/templates/beers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/templates/beers.js -------------------------------------------------------------------------------- /site/src/templates/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/templates/blog.js -------------------------------------------------------------------------------- /site/src/templates/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/templates/post.js -------------------------------------------------------------------------------- /site/src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/src/utils/typography.js -------------------------------------------------------------------------------- /site/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/site/static/favicon.ico -------------------------------------------------------------------------------- /theme/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/LICENSE -------------------------------------------------------------------------------- /theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/README.md -------------------------------------------------------------------------------- /theme/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/docker-compose.yml -------------------------------------------------------------------------------- /theme/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/gatsby-browser.js -------------------------------------------------------------------------------- /theme/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/gatsby-config.js -------------------------------------------------------------------------------- /theme/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/gatsby-ssr.js -------------------------------------------------------------------------------- /theme/index.js: -------------------------------------------------------------------------------- 1 | // boop 2 | -------------------------------------------------------------------------------- /theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/package.json -------------------------------------------------------------------------------- /theme/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/sample.env -------------------------------------------------------------------------------- /theme/src/apollo/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/src/apollo/client.js -------------------------------------------------------------------------------- /theme/src/components/withPreview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/src/components/withPreview/index.js -------------------------------------------------------------------------------- /theme/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/src/pages/404.js -------------------------------------------------------------------------------- /theme/src/pages/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/src/pages/preview.js -------------------------------------------------------------------------------- /theme/src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/src/utils/typography.js -------------------------------------------------------------------------------- /theme/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/static/favicon.ico -------------------------------------------------------------------------------- /theme/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /theme/wp-headless-theme/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/functions.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/inc/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/inc/admin.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/inc/headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/inc/headers.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/inc/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/inc/log.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/inc/post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/inc/post-type.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/index.php -------------------------------------------------------------------------------- /theme/wp-headless-theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/theme/wp-headless-theme/style.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinwhall/wordpress-gatsby-preview-starter/HEAD/yarn.lock --------------------------------------------------------------------------------