Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): Fix case of GitHub, GitLab, JavaScript, TypeScript and WordPress. #19091

Merged
merged 1 commit into from
Oct 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/blog/2019-10-15-free-headless-cms/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ So, as long as the host is reputable, and the service is secure, you can buy the

## Option #2. Netlify CMS

Netlify created a free headless CMS modeled after open source projects like WordPress and Drupal, so JAMstack sites would have options beyond SaaS CMS’s. [Netlify CMS](https://www.netlifycms.org/) cleverly uses cloud git services like GitHub and Gitlab as the backend for your content, and claims to work with almost any static site generator, including Gatsby.
Netlify created a free headless CMS modeled after open source projects like WordPress and Drupal, so JAMstack sites would have options beyond SaaS CMS’s. [Netlify CMS](https://www.netlifycms.org/) cleverly uses cloud git services like GitHub and GitLab as the backend for your content, and claims to work with almost any static site generator, including Gatsby.

### How “free” is it?

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ export const pageQuery = graphql`
`
```

4. Create dynamic pages for your Wordpress posts by pasting the following sample code in `gatsby-node.js`:
4. Create dynamic pages for your WordPress posts by pasting the following sample code in `gatsby-node.js`:

```JS:title=gatsby-node.js
const path = require(`path`)
Expand Down
2 changes: 1 addition & 1 deletion docs/sites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7853,7 +7853,7 @@
main_url: https://enbonnet.me/
source_url: https://github.com/enbonnet
description: >
Hola, este es mi sitio personal, estare escribiendo sobre Javascript, Frontend y Tecnologia que utilice en mi dia a dia.
Hola, este es mi sitio personal, estare escribiendo sobre JavaScript, Frontend y Tecnologia que utilice en mi dia a dia.
categories:
- Portfolio
- Blog
Expand Down
6 changes: 3 additions & 3 deletions docs/starters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3912,7 +3912,7 @@
- Portfolio
- Styling:SCSS
features:
- Typescript for type-safe code
- TypeScript for type-safe code
- Source content from WordPress CMS
- Auto generated Pagination for your WordPress Posts
- Auto generated Navigation for next and previous post at the end Post
Expand Down Expand Up @@ -4052,7 +4052,7 @@
features:
- Minumum changes based on default starter template for TypeScript and PWA
- Added TypeScript support with eslint and tsc check
- Support Github Actions CI/CD workflow (beta)
- Support GitHub Actions CI/CD workflow (beta)
- url: https://iceberg-gatsby-multilang.netlify.com/
repo: https://github.com/diogorodrigues/iceberg-gatsby-multilang
description: Gatsby multi-language starter. Internationalization / i18n without third party plugins or packages for Posts and Pages. Different URLs dependending on the language. Focused on SEO, PWA, Image Optimization, Styled Components and more. This starter is also integrate with Netlify CMS to manage all pages, posts and images.
Expand Down Expand Up @@ -4118,7 +4118,7 @@
- React Hooks (IntersectionObserver, KeyUp, LocalStorage)
- url: https://friendly-cray-96d631.netlify.com/
repo: https://github.com/PABlond/Gatsby-TypeScript-Starter-Blog
description: Project boilerplate of a blog app. The starter was built using Gatsby and Typescript.
description: Project boilerplate of a blog app. The starter was built using Gatsby and TypeScript.
tags:
- Markdown
- Language:TypeScript
Expand Down
2 changes: 1 addition & 1 deletion examples/using-wordpress-with-acf/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-example-using-wordpress-with-acf",
"private": true,
"description": "Gatsby example site using the Wordpress source plugin and Advanced Custom Fields",
"description": "Gatsby example site using the WordPress source plugin and Advanced Custom Fields",
"version": "1.0.0-beta.6",
"author": "Sebastien Fichot <fichot.sebastien@gmail.com>",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/using-wordpress/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Using WordPress

This is an example which contains sample code for demonstrating how to source data from Wordpress using the [gatsby-source-wordpress plugin](https://www.gatsbyjs.org/packages/gatsby-source-wordpress/). This example is not a starter or working site. It is meant for the purpose of learning and contains code that cannot be included in the recipe itself. This example is created to serve as an extension to the example code provided in the Sourcing from Wordpress recipe in the Sourcing data section.
This is an example which contains sample code for demonstrating how to source data from WordPress using the [gatsby-source-wordpress plugin](https://www.gatsbyjs.org/packages/gatsby-source-wordpress/). This example is not a starter or working site. It is meant for the purpose of learning and contains code that cannot be included in the recipe itself. This example is created to serve as an extension to the example code provided in the Sourcing from Wordpress recipe in the Sourcing data section.

IMPORTANT NOTE: This example site won't keep working if you switch the WordPress site to one of yours. It's meant as a learning resource. Try starting from scratch with a site created by `gatsby new` and start copying over parts from this site starting with `gatsby-config.js`.
6 changes: 3 additions & 3 deletions examples/using-wordpress/gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module.exports = {
siteMetadata: {
title: `An example to learn how to source data form Wordpress`,
subtitle: `Sourcing data from Wordpress`,
title: `An example to learn how to source data form WordPress`,
subtitle: `Sourcing data from WordPress`,
},
plugins: [
{
resolve: `gatsby-source-wordpress`,
options: {
/*
* The base URL of the Wordpress site without the trailingslash and the protocol. This is required.
* The base URL of the WordPress site without the trailingslash and the protocol. This is required.
* Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com'
*/
baseUrl: `example.wordpress.com`,
Expand Down
2 changes: 1 addition & 1 deletion examples/using-wordpress/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gatsby-example-sourcing-wordpress",
"private": true,
"description": "An example to learn how to source data form Wordpress",
"description": "An example to learn how to source data form WordPress",
"version": "0.1.0",
"author": "Vishwa Mehta <vishwa.mehta30@gmail.com>",
"dependencies": {
Expand Down