create-a-blog-post.mdx 886 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. sidebar_position: 3
  3. ---
  4. # Create a Blog Post
  5. Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed...
  6. ## Create your first Post
  7. Create a file at `blog/2021-02-28-greetings.md`:
  8. ```md title="blog/2021-02-28-greetings.md"
  9. ---
  10. slug: greetings
  11. title: Greetings!
  12. authors:
  13. - name: Joel Marcey
  14. title: Co-creator of Docusaurus 1
  15. url: https://github.com/JoelMarcey
  16. image_url: https://github.com/JoelMarcey.png
  17. - name: Sébastien Lorber
  18. title: Docusaurus maintainer
  19. url: https://sebastienlorber.com
  20. image_url: https://github.com/slorber.png
  21. tags: [greetings]
  22. ---
  23. Congratulations, you have made your first post!
  24. Feel free to play around and edit this post as much as you like.
  25. ```
  26. A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).