logo

Blog System with Markdown

Invalid DatePreet Suthar

The boilerplate includes a blog system that uses Markdown for content creation. Here’s how to use it:

  1. Add your blog posts as .md files in the src/content/blog/ folder.
  2. Use the pre-configured Markdown renderer to display blog content.
  3. Customize your blog design in the components/ directory.

Each Markdown file should include frontmatter with metadata about the post, for example:

---
title: My First Blog Post
date: "2023-01-01"
excerpt: This is a short description of the blog post
author: Your Name
---

# My First Blog Post

Content goes here...