blogging

Installation
SKILL.md

Blogging

The site has two content collections: blog for Augur project updates and learn for educational fork content. Both use MDX with frontmatter, stored as files in src/content/.

Content Structure

src/content/
├── config.ts           # Zod schemas for both collections
├── blog/
│   └── {slug}/
│       ├── index.mdx   # Post content
│       └── *.webp      # Images (featured-image.webp, content-image.webp)
└── learn/
    └── {topic}/
        └── {slug}.mdx  # Article content (or index.mdx for topic root)

Each blog post gets its own directory named by slug. Images live alongside the MDX file and are referenced with relative paths.

Installs
1
GitHub Stars
3
First Seen
Apr 18, 2026
blogging — augurproject/augur-reboot-website