A simple, modern status page that renders markdown content. Perfect for GitHub Pages hosting.
- Markdown-based content: Easy to edit and maintain
- Modern UI: Clean, responsive design with your brand color (#C40000)
- Status indicators: Visual status indicators (operational, degraded, outage, maintenance)
- Auto-refresh: Updates every 5 minutes
- Light theme: Readable and professional
Edit the status.md file to update your service status. The file uses a simple metadata format:
status: operational # Can be: operational, degraded, outage, maintenance
title: All Systems Operational
date: 2024-01-13T12:00:00Z # ISO format date
# Your status content here
# Use regular markdown formatting✅ Headers: #, ##, ###, ####
✅ Lists: Bulleted and numbered
✅ Tables: Full table support
✅ Code: Inline `code` and code blocks
✅ Links: [text](url)
✅ Images: 
✅ Blockquotes: > quoted text
✅ Bold/Italic: **bold**, *italic*
✅ Horizontal Rules: ---
index.html- Main HTML filestyles.css- CSS stylesscript.js- JavaScript for markdown renderingstatus.md- Status content (edit this file)
The system supports these status types:
operational- Green indicator (all systems working)degraded- Yellow indicator (some issues)outage- Red indicator (major problems)maintenance- Blue indicator (planned work)
The page supports full markdown formatting:
- Headers (
#,##,###) - Lists (bulleted and numbered)
- Tables
- Code blocks
- Links and images
- Blockquotes
Works in all modern browsers. Uses:
- Fetch API (for loading markdown)
- Marked.js (for markdown parsing)
- CSS Grid/Flexbox (for layout)