diff options
author | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-16 19:02:14 +0100 |
---|---|---|
committer | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-16 19:02:14 +0100 |
commit | b0c1d8bfba7fc4d85ae37df18a704ce239b65d28 (patch) | |
tree | 0a43cb54ccdd72addcf66dac066f5d64e705d457 /docs/tutorial-basics/create-a-blog-post.md | |
parent | 0619286d9615c6a2b5e0420c193bd2c7ef344cc0 (diff) | |
download | neohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.tar.gz neohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.tar.bz2 neohaskell.github.io-b0c1d8bfba7fc4d85ae37df18a704ce239b65d28.zip |
Ready for prod? lol
Diffstat (limited to 'docs/tutorial-basics/create-a-blog-post.md')
-rw-r--r-- | docs/tutorial-basics/create-a-blog-post.md | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/tutorial-basics/create-a-blog-post.md b/docs/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index ea472bb..0000000 --- a/docs/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -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 you like. -``` - -A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings). |