├── .gitignore ├── README.md ├── gatsby-theme ├── cli.js ├── gatsby-theme-debug.js ├── gatsby-theme-eject.js ├── gatsby-theme-new.js └── package.json ├── package.json ├── test-site ├── .prettierrc ├── LICENSE ├── README.md ├── content │ ├── assets │ │ └── avatar.jpg │ ├── notes │ │ ├── example-dir │ │ │ └── hi.mdx │ │ └── hello.mdx │ └── posts │ │ ├── hello-world.mdx │ │ ├── my-second-post.mdx │ │ └── new-beginnings.mdx ├── gatsby-config.js ├── package-lock.json ├── package.json ├── src │ ├── gastby-theme-blog │ │ └── components │ │ │ ├── header.js │ │ │ └── home-foter.js │ ├── gatsby-theme-blog │ │ └── components │ │ │ ├── header.js │ │ │ └── home-footer.js │ └── gatsby-theme-notes │ │ └── components │ │ ├── layot.js │ │ └── layout.js └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-theme/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/gatsby-theme/cli.js -------------------------------------------------------------------------------- /gatsby-theme/gatsby-theme-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/gatsby-theme/gatsby-theme-debug.js -------------------------------------------------------------------------------- /gatsby-theme/gatsby-theme-eject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/gatsby-theme/gatsby-theme-eject.js -------------------------------------------------------------------------------- /gatsby-theme/gatsby-theme-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/gatsby-theme/gatsby-theme-new.js -------------------------------------------------------------------------------- /gatsby-theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/gatsby-theme/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/package.json -------------------------------------------------------------------------------- /test-site/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/.prettierrc -------------------------------------------------------------------------------- /test-site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/LICENSE -------------------------------------------------------------------------------- /test-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/README.md -------------------------------------------------------------------------------- /test-site/content/assets/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/content/assets/avatar.jpg -------------------------------------------------------------------------------- /test-site/content/notes/example-dir/hi.mdx: -------------------------------------------------------------------------------- 1 | # Hi -------------------------------------------------------------------------------- /test-site/content/notes/hello.mdx: -------------------------------------------------------------------------------- 1 | # Hello! 2 | -------------------------------------------------------------------------------- /test-site/content/posts/hello-world.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/content/posts/hello-world.mdx -------------------------------------------------------------------------------- /test-site/content/posts/my-second-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/content/posts/my-second-post.mdx -------------------------------------------------------------------------------- /test-site/content/posts/new-beginnings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/content/posts/new-beginnings.mdx -------------------------------------------------------------------------------- /test-site/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/gatsby-config.js -------------------------------------------------------------------------------- /test-site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/package-lock.json -------------------------------------------------------------------------------- /test-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/package.json -------------------------------------------------------------------------------- /test-site/src/gastby-theme-blog/components/header.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /test-site/src/gastby-theme-blog/components/home-foter.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /test-site/src/gatsby-theme-blog/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/src/gatsby-theme-blog/components/header.js -------------------------------------------------------------------------------- /test-site/src/gatsby-theme-blog/components/home-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/src/gatsby-theme-blog/components/home-footer.js -------------------------------------------------------------------------------- /test-site/src/gatsby-theme-notes/components/layot.js: -------------------------------------------------------------------------------- 1 | // noop for testing gatsby-theme debug 2 | -------------------------------------------------------------------------------- /test-site/src/gatsby-theme-notes/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/src/gatsby-theme-notes/components/layout.js -------------------------------------------------------------------------------- /test-site/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/test-site/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristopherBiscardi/gatsby-theme/HEAD/yarn.lock --------------------------------------------------------------------------------