├── .gitignore ├── README.md ├── example ├── .gitignore ├── README.md ├── gatsby-config.js ├── package.json └── src │ └── gatsby-starter-wordpress-base │ └── components │ └── blocks │ ├── core │ └── paragraph.js │ ├── custom │ ├── example.js │ └── index.js │ └── supported.js ├── gatsby-starter-wordpress-base ├── .gitignore ├── README.md ├── gatsby-config.js ├── gatsby-node.js ├── index.tsx ├── lib │ ├── actions.js │ └── queries.js ├── package-lock.json ├── package.json └── src │ ├── components │ ├── Link.tsx │ └── blocks │ │ ├── core │ │ ├── heading.tsx │ │ ├── image.tsx │ │ ├── index.ts │ │ ├── list.tsx │ │ ├── more.tsx │ │ ├── paragraph.tsx │ │ ├── pre.tsx │ │ ├── separator.tsx │ │ ├── types │ │ │ └── index.ts │ │ └── verse.tsx │ │ ├── index.tsx │ │ ├── supported.tsx │ │ └── types │ │ └── index.ts │ ├── helpers │ ├── fragments │ │ └── post-types.ts │ ├── functions.ts │ ├── hooks.ts │ └── transformers.tsx │ ├── layouts │ └── index.tsx │ ├── pages │ └── index.tsx │ ├── templates │ ├── page.tsx │ └── post.tsx │ └── types │ ├── gatsby.ts │ ├── gutenberg.ts │ └── wpgraphql.ts ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | public 3 | node_modules 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/README.md -------------------------------------------------------------------------------- /example/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/gatsby-config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/gatsby-starter-wordpress-base/components/blocks/core/paragraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/src/gatsby-starter-wordpress-base/components/blocks/core/paragraph.js -------------------------------------------------------------------------------- /example/src/gatsby-starter-wordpress-base/components/blocks/custom/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/src/gatsby-starter-wordpress-base/components/blocks/custom/example.js -------------------------------------------------------------------------------- /example/src/gatsby-starter-wordpress-base/components/blocks/custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/src/gatsby-starter-wordpress-base/components/blocks/custom/index.js -------------------------------------------------------------------------------- /example/src/gatsby-starter-wordpress-base/components/blocks/supported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/example/src/gatsby-starter-wordpress-base/components/blocks/supported.js -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn_error.log -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/README.md -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/lib/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/lib/actions.js -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/lib/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/lib/queries.js -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/package-lock.json -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/package.json -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/Link.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/heading.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/image.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/index.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/list.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/more.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/more.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/paragraph.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/pre.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/pre.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/separator.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/types/index.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/core/verse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/core/verse.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/index.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/supported.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/supported.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/components/blocks/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/components/blocks/types/index.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/helpers/fragments/post-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/helpers/fragments/post-types.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/helpers/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/helpers/functions.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/helpers/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/helpers/hooks.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/helpers/transformers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/helpers/transformers.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/layouts/index.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/pages/index.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/templates/page.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/templates/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/templates/post.tsx -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/types/gatsby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/types/gatsby.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/types/gutenberg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/types/gutenberg.ts -------------------------------------------------------------------------------- /gatsby-starter-wordpress-base/src/types/wpgraphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/gatsby-starter-wordpress-base/src/types/wpgraphql.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/gatsby-starter-wordpress-base/HEAD/yarn.lock --------------------------------------------------------------------------------