aboutsummaryrefslogtreecommitdiff
path: root/docs/tutorial-basics/create-a-blog-post.mdx
diff options
context:
space:
mode:
authorshu <nvcsadjkojf@outlook.com>2026-09-05 21:00:19 +0800
committershu <nvcsadjkojf@outlook.com>2026-09-05 21:00:19 +0800
commitefb449041e030c8d9ec06a4f4cfbf5554c868a93 (patch)
treefb9bdd23a9c4a71d54daa2b5a854a6e5082063f3 /docs/tutorial-basics/create-a-blog-post.mdx
init commit
Diffstat (limited to 'docs/tutorial-basics/create-a-blog-post.mdx')
-rw-r--r--docs/tutorial-basics/create-a-blog-post.mdx34
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/tutorial-basics/create-a-blog-post.mdx b/docs/tutorial-basics/create-a-blog-post.mdx
new file mode 100644
index 0000000..550ae17
--- /dev/null
+++ b/docs/tutorial-basics/create-a-blog-post.mdx
@@ -0,0 +1,34 @@
+---
+sidebar_position: 3
+---
+
+# Create a Blog Post
+
+Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed...
+
+## Create your first Post
+
+Create a file at `blog/2021-02-28-greetings.md`:
+
+```md title="blog/2021-02-28-greetings.md"
+---
+slug: greetings
+title: Greetings!
+authors:
+ - name: Joel Marcey
+ title: Co-creator of Docusaurus 1
+ url: https://github.com/JoelMarcey
+ image_url: https://github.com/JoelMarcey.png
+ - name: Sébastien Lorber
+ title: Docusaurus maintainer
+ url: https://sebastienlorber.com
+ image_url: https://github.com/slorber.png
+tags: [greetings]
+---
+
+Congratulations, you have made your first post!
+
+Feel free to play around and edit this post as much as you like.
+```
+
+A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).