Files
chorus-ping-blog/scheduled/README.md
anthonyrawlins 6e13451dc4 Initial commit: CHORUS PING! blog
- Next.js 14 blog application with theme support
- Docker containerization with volume bindings
- Traefik integration with Let's Encrypt SSL
- MDX support for blog posts
- Theme toggle with localStorage persistence
- Scheduled posts directory structure
- Brand guidelines compliance with CHORUS colors

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-27 14:46:26 +10:00

1.3 KiB

Scheduled Posts

This directory contains blog posts that are scheduled for future publication.

Directory Structure

scheduled/
├── 2024/
│   ├── 01/
│   ├── 02/
│   └── ...
├── 2025/
│   ├── 01/
│   ├── 02/
│   └── ...
└── README.md

File Naming Convention

Posts should be named with the format: YYYY-MM-DD-slug.md

Example: 2024-03-15-understanding-ai-agents.md

Frontmatter Format

Each scheduled post should include the following frontmatter:

---
title: "Your Post Title"
description: "Brief description of the post"
date: "2024-03-15"
publishDate: "2024-03-15T09:00:00.000Z"
author:
  name: "Author Name"
  role: "Author Role"
tags:
  - "tag1"
  - "tag2"
featured: false
draft: false
---

Publishing Process

  1. Write your post in the appropriate scheduled directory
  2. Set the publishDate to when you want it published
  3. A scheduled job will move posts from scheduled/ to posts/ when their publish date arrives
  4. The blog will automatically pick up the new post and display it

Notes

  • Posts in this directory are not visible on the live blog until moved to posts/
  • Use draft: true for posts that are work-in-progress
  • The publishDate field determines when the post goes live