Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
255 additions
and 253 deletions.
- +1 −1 .github/PULL_REQUEST_TEMPLATE.md
- +1 −1 CODE_OF_CONDUCT.md
- +1 −1 CONTRIBUTING.md
- +8 −8 docs/contributing/gatsby-style-guide.md
- +1 −1 docs/contributing/how-to-make-a-reproducible-test-case.md
- +1 −1 docs/contributing/how-to-run-a-gatsby-workshop.md
- +2 −2 docs/contributing/how-to-write-a-tutorial.md
- +2 −2 docs/contributing/managing-pull-requests.md
- +1 −1 docs/contributing/submit-to-plugin-library.md
- +1 −1 docs/contributing/translation/translators.md
- +1 −1 docs/docs/adding-comments.md
- +1 −1 docs/docs/adding-search-with-algolia.md
- +1 −1 docs/docs/answering-it-security.md
- +2 −2 docs/docs/building-an-ecommerce-site-with-shopify.md
- +1 −1 docs/docs/creating-and-modifying-pages.md
- +1 −1 docs/docs/debugging-replace-renderer-api.md
- +1 −1 docs/docs/end-to-end-testing.md
- +1 −1 docs/docs/gatsby-config.md
- +2 −2 docs/docs/gatsby-core-philosophy.md
- +1 −1 docs/docs/gatsby-link.md
- +3 −3 docs/docs/glossary/markdown.md
- +2 −2 docs/docs/glossary/mdx.md
- +1 −1 docs/docs/layout-components.md
- +4 −4 docs/docs/localization-i18n.md
- +1 −1 docs/docs/making-your-site-accessible.md
- +1 −1 docs/docs/mdx/markdown-syntax.md
- +2 −2 docs/docs/migrating-from-v1-to-v2.md
- +2 −2 docs/docs/porting-an-html-site-to-gatsby.md
- +3 −3 docs/docs/reach-router-and-gatsby.md
- +1 −1 docs/docs/recipes/working-with-images.md
- +1 −1 docs/docs/sourcing-from-kentico-kontent.md
- +4 −4 docs/docs/theme-api.md
- +1 −1 docs/docs/typography-js.md
- +1 −1 docs/docs/what-you-dont-need-plugins-for.md
- +1 −1 docs/docs/winning-over-marketers.md
- +1 −1 docs/tutorial/part-eight/index.md
- +1 −1 docs/tutorial/wordpress-source-plugin-tutorial.md
- +2 −0 examples/client-only-paths/README.md
- +1 −1 examples/creating-source-plugins/example-site/gatsby-config.js
- +1 −1 examples/data-fetching/README.md
- +1 −1 examples/data-fetching/src/components/layout.js
- +1 −1 examples/data-fetching/src/pages/index.js
- +2 −2 examples/ecommerce-tutorial-with-stripe/.env.example
- +1 −1 examples/ecommerce-tutorial-with-stripe/README.md
- +1 −1 examples/ecommerce-tutorial-with-stripe/src/components/layout.js
- +1 −1 examples/ecommerce-tutorial-with-stripe/src/pages/index.js
- +1 −1 examples/feed/gatsby-config.js
- +1 −1 examples/gatsbygram/README.md
- +1 −1 examples/gatsbygram/src/pages/about.js
- +1 −1 examples/graphql-reference/src/components/Layout.js
- +1 −1 examples/image-processing/README.md
- +7 −7 examples/image-processing/src/pages/index.js
- +1 −1 examples/recipe-createPage/README.md
- +1 −1 examples/recipe-linking-between-pages/README.md
- +1 −1 examples/recipe-sourcing-contentful/README.md
- +2 −2 examples/recipe-sourcing-contentful/src/components/layout.js
- +1 −1 examples/recipe-static-image/gatsby-config.js
- +1 −1 examples/recipe-webpack-image/gatsby-config.js
- +2 −2 examples/recipes-gatsby-image/src/components/layout.js
- +1 −1 examples/recipes-gatsby-image/src/components/markdown-layout.js
- +1 −1 examples/simple-auth/gatsby-node.js
- +1 −1 examples/simple-auth/src/pages/index.js
- +1 −1 examples/sitemap/README.md
- +1 −1 examples/sitemap/gatsby-config.js
- +4 −4 examples/using-MDX/README.md
- +1 −1 examples/using-MDX/src/components/image.js
- +2 −2 examples/using-MDX/src/components/layout.js
- +1 −1 examples/using-contentful/src/pages/image-api.js
- +1 −1 examples/using-cxs/src/pages/index.js
- +1 −1 examples/using-cypress/README.md
- +1 −1 examples/using-cypress/cypress/e2e/accessibility.test.js
- +1 −1 examples/using-cypress/src/components/image.js
- +2 −2 examples/using-cypress/src/components/layout.js
- +1 −1 examples/using-cypress/src/components/seo.js
- +3 −3 examples/using-emotion-prismjs/README.md
- +1 −1 examples/using-emotion/README.md
- +1 −1 examples/using-emotion/src/pages/index.js
- +1 −1 examples/using-faker/README.md
- +2 −2 examples/using-fragments/gatsby-config.js
- +1 −1 examples/using-gatsby-image/src/components/floating-image.js
- +4 −4 examples/using-gatsby-image/src/components/layout.js
- +1 −1 examples/using-gatsby-image/src/components/navigation.js
- +2 −2 examples/using-gatsby-image/src/pages/index.js
- +1 −1 examples/using-gatsby-image/src/pages/traced-svg.js
- +1 −1 examples/using-gatsby-source-graphql/README.md
- +1 −1 examples/using-gatsby-source-graphql/src/pages/index.js
- +1 −1 examples/using-gatsby-with-json-yaml/gatsby-node.js
- +2 −2 examples/using-gatsby-without-graphql/README.md
- +1 −1 examples/using-glamor/src/pages/index.js
- +1 −1 examples/using-i18n/src/templates/post.js
- +1 −1 examples/using-javascript-transforms/package.json
- +1 −1 examples/using-jest/README.md
- +1 −1 examples/using-jss/src/pages/detail.js
- +1 −1 examples/using-jss/src/pages/index.js
- +1 −1 examples/using-markdown-pages/README.md
- +1 −1 examples/using-markdown-pages/gatsby-browser.js
- +1 −1 examples/using-markdown-pages/gatsby-ssr.js
- +2 −2 examples/using-markdown-pages/src/components/layout.js
- +1 −1 examples/using-multiple-local-plugins/README.md
- +2 −2 examples/using-multiple-local-plugins/gatsby-site-using-local-plugins/src/components/layout.js
- +2 −2 examples/using-multiple-themes/README.md
- +1 −1 examples/using-multiple-themes/gatsby-config.js
- +1 −1 examples/using-plugin-options/README.md
- +2 −2 examples/using-plugin-options/src/components/layout.js
- +2 −2 examples/using-reach-skip-nav/README.md
- +1 −1 examples/using-reach-skip-nav/gatsby-browser.js
- +2 −2 examples/using-reach-skip-nav/src/components/layout.js
- +1 −1 examples/using-reach-skip-nav/src/components/seo.js
- +3 −3 examples/using-redirects/gatsby-node.js
- +2 −2 examples/using-redirects/src/pages/index.js
- +3 −3 examples/using-redirects/src/pages/page-2.js
- +1 −1 ...ples/using-remark-copy-linked-files/src/pages/2017-11-13-gatsby-remark-copy-linked-files/index.md
- +1 −1 examples/using-remark/README.md
- +1 −1 examples/using-remark/gatsby-config.js
- +3 −3 examples/using-remark/src/pages/2016-04-15---hello-world-kitchen-sink/index.md
- +3 −3 examples/using-remark/src/pages/2017-01-02---responsive-images-and-iframes/index.md
- +2 −2 examples/using-remark/src/pages/2017-03-21---copy-linked-files-intercepting-local-links/index.md
- +1 −1 examples/using-remark/src/pages/2017-04-04---code-and-syntax-highlighting/index.md
- +2 −2 examples/using-remark/src/pages/2017-04-05---embed-snippets/index.md
- +1 −1 examples/using-remark/src/pages/2017-08-07---katex/index.md
- +2 −2 examples/using-remark/src/pages/2019-02-06---graphviz/index.md
- +1 −1 examples/using-remark/src/pages/index.js
- +10 −10 examples/using-shopify/README.md
- +1 −1 examples/using-shopify/gatsby-browser.js
- +1 −1 examples/using-shopify/gatsby-ssr.js
- +1 −1 examples/using-shopify/src/components/layout.js
- +1 −1 examples/using-sqip/src/pages/index.js
- +10 −10 examples/using-square-payments/README.md
- +1 −1 examples/using-square-payments/src/components/image.js
- +2 −2 examples/using-square-payments/src/components/layout.js
- +1 −1 examples/using-square-payments/src/components/seo.js
- +1 −1 examples/using-styled-components/README.md
- +1 −1 examples/using-styled-components/src/pages/index.js
- +1 −1 examples/using-styled-jsx/README.md
- +1 −1 examples/using-styletron/src/pages/index.js
- +10 −10 examples/using-type-definitions/README.md
- +1 −1 examples/using-type-definitions/src/components/layout.js
- +1 −1 examples/using-wordpress/README.md
- +10 −10 starters/blog/README.md
- +1 −1 starters/blog/src/components/bio.js
- +1 −1 starters/blog/src/components/seo.js
- +1 −1 starters/default/gatsby-browser.js
- +1 −1 starters/default/gatsby-node.js
- +1 −1 starters/default/gatsby-ssr.js
- +1 −1 starters/default/src/components/image.js
- +1 −1 starters/default/src/components/layout.js
- +1 −1 starters/default/src/components/seo.js
- +1 −1 starters/gatsby-starter-minimal/README.md
- +1 −1 starters/gatsby-starter-plugin/gatsby-browser.js
- +2 −2 starters/gatsby-starter-plugin/gatsby-node.js
- +1 −1 starters/gatsby-starter-plugin/gatsby-ssr.js
- +1 −1 starters/hello-world/gatsby-config.js
@@ -1,3 +1,3 @@ | ||
# Gatsby Contributor Covenant Code of Conduct | ||
|
||
Please check out the [Code of Conduct](https://www.gatsbyjs.org/contributing/code-of-conduct/) page on the Gatsby site. | ||
Please check out the [Code of Conduct](https://www.gatsbyjs.com/contributing/code-of-conduct/) page on the Gatsby site. |
@@ -1,3 +1,3 @@ | ||
## How to Contribute | ||
|
||
For information related to contributing to Gatsby, please check out the [How to Contribute](https://www.gatsbyjs.org/contributing/how-to-contribute/) section of the documentation at the Gatsby site. | ||
For information related to contributing to Gatsby, please check out the [How to Contribute](https://www.gatsbyjs.com/contributing/how-to-contribute/) section of the documentation at the Gatsby site. |
Oops, something went wrong.