-
Create a markdown file in the
/blogfolder:blog/your-post-slug.md -
Add your post to the
POSTSarray inblog.js:{ slug: 'your-post-slug', // Must match your .md filename (without .md) title: 'Your Post Title', date: '2025-12-15', // YYYY-MM-DD format description: 'Brief description shown in the list' }
-
Refresh the page — your post will appear in the Blog section.
# OSINT Techniques for Security Research
Introduction paragraph...
## Section 1
Content here...
## Conclusion
Wrap up...const POSTS = [
{
slug: 'getting-started',
title: 'Hello World - Getting Started',
date: '2025-12-15',
description: 'An introduction to my journey...'
},
{
slug: 'osint-techniques', // NEW POST
title: 'OSINT Techniques for Security Research',
date: '2025-12-16',
description: 'Exploring open-source intelligence methods.'
}
];- Posts are sorted by date (newest first)
- Clicking a post opens the raw
.mdfile - Use standard Markdown formatting in your posts