Docs

Calendar

A visual month-grid view of all your entries — see at a glance what's scheduled, expiring, published, or in draft.

Full calendar page

Open Calendar from the sidebar (or the Station dock). The page shows a month grid with entry chips on the days they were last edited or are scheduled to appear:

ColorMeaning
BlueScheduled — entry will be published at publish_at
GoldExpiring — published entry will unpublish at unpublish_at
GreenPublished
GreyDraft

Click any day to see the entries for that date in the detail sidebar on the right. Use the filter buttons (All / Scheduled / Published / Draft) to narrow the list. Clicking an entry opens it directly in the editor.

Navigation

  • ← Prev / Next → — change month
  • Today — jump back to the current month and highlight today
  • Keyboard: / to change month, T for today

Dashboard widget

The dashboard includes a compact calendar strip below the hero section:

  • Mini calendar — current month with colored dots on days that have entries
  • Upcoming — next 5 entries sorted by date, with scheduled and expiring entries shown first
  • Full calendar → — link to the full calendar page

API

GET /api/search/calendar

Returns all non-deleted entries with their date fields:

{
  "id":           "550e8400-…",
  "collection":   "posts",
  "label":        "Posts",
  "slug":         "my-post",
  "title":        "My Post",
  "status":       "scheduled",
  "publish_at":   "2026-07-01 09:00:00",
  "unpublish_at": null,
  "created_at":   "2026-06-15 12:00:00",
  "updated_at":   "2026-06-20 10:30:00"
}