Welcome contributor! 🚀 Follow this guide to add your blog correctly.
- Click Fork
- Clone your fork locally
Go to:
content/blogs/
Create a folder:
YYYY-MM-DD-your-blog-title
Example:
2026-04-08-understanding-load-balancing
Inside your folder:
index.md
Paste this template:
---
title: "Your Blog Title"
slug: "your-blog-title"
authors:
- "your-author-id"
date: "2026-04-08"
lastUpdated: "2026-04-08"
type: "member" # or "society"
category: "system-design"
tags: ["tag1", "tag2"]
series:
name: ""
part: 1
excerpt: "Short summary of your blog."
cover: "./cover.png"
draft: false
---
## Introduction
Start writing your blog...Go to:
content/authors/
Create:
your-name.json
Example:
{
"id": "debatreya-das",
"name": "Debatreya Das",
"bio": "Your bio",
"avatar": "/images/authors/deb.png",
"socials": {
"github": "your-github",
"linkedin": "your-linkedin"
}
}Put images inside your blog folder:
content/blogs/your-blog/
├── index.md
├── cover.png
├── diagram1.png
Use them like:
## Section Title
```java
System.out.println("Hello");
```
- Item 1
- Item 2
| Column | Value |
|--------|-------|
| A | B |
[Visit Site](https://example.com)
You can write:
$$
E = mc^2
$$
Use ONLY one of:
- system-design
- development
- ai-ml
- event
- case-study
- projects
- Push your changes
- Open PR
- Wait for validation + review
- Wrong folder name
- Missing cover image
- Invalid category
- Wrong author ID
- Broken markdown
Your blog should be:
- Clear and structured
- Technically correct
- Well formatted
Think of your blog as:
“Something a junior would read and actually understand”
Happy writing ✨