Back to Home

Blog

Latest news, updates, and insights from the OpenCredit initiative. Stay informed about our progress, technical developments, and the future of open-source credit assessment in India.

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.

Create New Post

All Posts

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!")
```