A blog powered by CitePo.
├── blog.json # Blog configuration
├── style.css # Custom styles (overrides theme)
├── content/ # Blog posts (MDX)
├── asset/ # Static assets
│ └── images/ # Image files
└── .gitignore
# Start development server
npx citepo devCreate .mdx files in the content/ directory with frontmatter:
---
title: My First Post
description: A short description
date: 2025-01-01
tags: [blog, intro]
---
Your content here...Edit blog.json to customize your blog. See CitePo Documentation for details.
Add custom CSS to style.css. These styles load after the theme and have higher priority.