How to post

By Vipul Chodankar

1 min read · 2020-06-15

How to get started with blog posts

We'll follow the following structure to ensure things stay organized.


How to save the post

  1. Fork the repo
  2. Clone the forked repo

    git clone https://github.com/<YourUserName>/new-webapp

  3. Create a new branch (folder-name explained in the folder structure)

    git checkout -b blog-folder-name

  4. Add your files

    Example git add . to add everything

  5. Commit your changes with a meaning message

    git commit -m "Blog: folder-name"

  6. Push your changes to your forked repo

    git push -u origin blog-folder-name

  7. Create Pull Request on GitHub and add label 'blog'

Folder Structure

Random image

  1. Create a folder inside content/blog
  2. Use kebab case to name the folder, the same name will be used for your file. For example, in the above picture, I name my file and folder as 'how-to-post'.
  3. Create a markdown file with the same name as your folder.
  4. Add any images that you will require to the folder or directly use their links.

    Supported image types: PNG & JPEG


Learning Markdown


It's quite simple once you get the hang of it.


Where do i see my post?

Your post will be visible at https://fcgec.netlify.app/blog/file-name

Example: this post is at https://fcgec.netlify.app/blog/how-to-post