Add warnings to platform guides

This commit is contained in:
Daniel Lautzenheiser
2022-11-07 10:44:42 -05:00
parent c55d1f912f
commit 0fe6989ab3
11 changed files with 34 additions and 9 deletions

View File

@ -3,9 +3,12 @@ group: Guides
title: Gatsby
weight: 10
---
<Alert severity="warning">This guide is out of date and may not be currently accurate. We are working to update it. Use at your own risk.</Alert>
This guide will help you get started using Static CMS and Gatsby.
To get up and running with Gatsby, you'll need to have [Node.js](https://nodejs.org/) installed on your computer. *Note: Gatsby's minimum supported Node.js version is Node 8.*
To get up and running with Gatsby, you'll need to have [Node.js](https://nodejs.org/) installed on your computer. _Note: Gatsby's minimum supported Node.js version is Node 8._
## Create a new Gatsby site
@ -26,10 +29,9 @@ You will see that there are multiple Markdown files that represent blog posts. O
```yml
---
title: New Beginnings
date: "2015-05-28T22:40:32.169Z"
date: '2015-05-28T22:40:32.169Z'
description: This is an optional description for SEO and Open Graph purposes, rather than the default generated excerpt.
---
Far far away, behind the word mountains, far from the countries Vokalia and
Consonantia, there live the blind texts.
```
@ -100,7 +102,7 @@ content/
Finally, add the plugin to your `gatsby-config.js`.
```javascript
plugins: [`gatsby-plugin-netlify-cms`]
plugins: [`gatsby-plugin-netlify-cms`];
```
### Push to GitHub
@ -129,7 +131,7 @@ Netlify's Identity and Git Gateway services allow you to manage CMS admin users
## Start publishing
It's time to create your first blog post. Login to your site's `/admin/` page and create a new post by clicking New Blog. Add a title, a date and some text. When you click Publish, a new commit will be created in your GitHub repo with this format `Create Blog "year-month-date-title"`.
It's time to create your first blog post. Login to your site's `/admin/` page and create a new post by clicking New Blog. Add a title, a date and some text. When you click Publish, a new commit will be created in your GitHub repo with this format `Create Blog "year-month-date-title"`.
Then Netlify will detect that there was a commit in your repo, and will start rebuilding your project. When your project is deployed you'll be able to see the post you created.