Contribute to our Blog
Blog posts are published via GitHub. Create a new .md file in the content/blog directory and submit a pull request.
Blog Post Template
To publish a new blog post, create a .md file with the following frontmatter:
---
title: "Your Blog Post Title"
description: "A brief description of your post"
date: "2025-01-15"
author: "Your Name"
authorRole: "Your Role (optional)"
category: "Announcement"
tags: ["open-source", "credit", "india"]
featured: false
---
Your blog post content goes here in **Markdown** format.
## Headings
Use ## for section headings.
## Lists
- Item one
- Item two
- Item three
## Code
```python
def hello_world():
print("Hello, OpenCredit!")
```