Hello World

Welcome to Mini Markdown CMS! This is your first blog post.

What is Mini CMS?

Mini CMS is a lightweight content management system built with PHP. It uses:

  • Markdown files for content storage
  • SQLite FTS5 for blazing-fast search
  • Flat file architecture — no MySQL needed

Code Example

$contentLoader = new ContentLoader('content/');
$post = $contentLoader->loadBySlug('posts', 'hello-world');
echo $post['title']; // "Hello World"

Why Markdown?

Markdown is the source of truth. Your content lives in simple text files that are:

  1. Easy to version control with Git
  2. Portable across systems
  3. Human-readable without any tools

"Simplicity is the ultimate sophistication." — Leonardo da Vinci

Happy writing!