Blog System with Markdown
Invalid Date•Preet Suthar
The boilerplate includes a blog system that uses Markdown for content creation. Here’s how to use it:
- Add your blog posts as
.md
files in thesrc/content/blog/
folder. - Use the pre-configured Markdown renderer to display blog content.
- 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...