mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-09 07:07:25 +02:00
* codesandbox: use node 14 by default * Regenerate examples * Add example json files to prettierrignore
25 lines
591 B
Markdown
25 lines
591 B
Markdown
---
|
|
title: Create a Blog Post
|
|
---
|
|
|
|
This page will help you on how to create blog posts in Docusaurus.
|
|
|
|
## Create a Blog Post
|
|
|
|
Create a file at `blog/2021-02-28-greetings.md`:
|
|
|
|
```md title="blog/2021-02-28-greetings.md"
|
|
---
|
|
title: Greetings!
|
|
author: Steven Hansel
|
|
author_title: Docusaurus Contributor
|
|
author_url: https://github.com/ShinteiMai
|
|
author_image_url: https://github.com/ShinteiMai.png
|
|
---
|
|
|
|
Congratulations, you have made your first post!
|
|
|
|
Feel free to play around and edit this post as much you like.
|
|
```
|
|
|
|
A new blog post is now available at `http://localhost:3000/blog/greetings`.
|