
Demo
Blog Demo
Zijing Cai
1 分钟阅读
demoexample
Blog Demo
This is a demo blog post to showcase the blog functionality.
Features
This blog system supports:
- Search - Search by title and description
- Categories - Filter posts by category
- Tags - Filter posts by tags
- Reading Time - Automatically calculated
- Images - Cover images and inline images
- Table of Contents - Left sidebar navigation
Adding New Posts
Create a new .md file in content/posts/ directory with frontmatter:
---
title: "Your Title"
date: "2026-03-19"
description: "Brief description"
category: "Category Name"
tags: ["tag1", "tag2"]
author: "Author Name"
image: "/path/to/image.png"
---
Your content here...
Markdown Support
You can use all standard Markdown syntax.
Code Blocks
def hello_world():
print("Hello, World!")
Lists
- Item 1
- Item 2
- Item 3
Links
That's it! Start writing your own posts.