mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-02-17 18:39:07 +00:00
Introduces a new documentation site for CS2-SimpleAdmin using Docusaurus, including developer API references, tutorials, user guides, and module documentation. Removes the CleanModule example and updates FunCommands and ExampleModule. Also updates main plugin and API files to support new documentation and module structure.
35 lines
886 B
Markdown
35 lines
886 B
Markdown
---
|
|
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).
|