aboutsummaryrefslogtreecommitdiff
path: root/_archived/docs/tutorial-basics/create-a-blog-post.mdx
diff options
context:
space:
mode:
authorshu <nvcsadjkojf@outlook.com>2026-09-05 21:00:25 +0800
committershu <nvcsadjkojf@outlook.com>2026-09-05 21:00:25 +0800
commit7295f4e7408934a1cabc915256ea476a930c4a65 (patch)
tree542816243742c71b2f0b5ea1fd359896538c81ec /_archived/docs/tutorial-basics/create-a-blog-post.mdx
parentefb449041e030c8d9ec06a4f4cfbf5554c868a93 (diff)
init commitHEADmain
Diffstat (limited to '_archived/docs/tutorial-basics/create-a-blog-post.mdx')
-rw-r--r--_archived/docs/tutorial-basics/create-a-blog-post.mdx34
1 files changed, 34 insertions, 0 deletions
diff --git a/_archived/docs/tutorial-basics/create-a-blog-post.mdx b/_archived/docs/tutorial-basics/create-a-blog-post.mdx
new file mode 100644
index 0000000..550ae17
--- /dev/null
+++ b/_archived/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).