- html/clawdie/index.html - Main site (dark theme) - html/clawdie/screenshots/ - Wizard screenshots + tmux captures - html/clawdie/css/ - Shared styles - html/clawdie/docs/ - Documentation page - html/osa/index.html - OSA site (light theme) - html/README.md - Deployment instructions This allows tracking website changes in git. Deploy manually: cp html/clawdie/index.html /usr/local/www/clawdie/ Future: migrate to Astro (see .agent/skills/astro/SKILL.md)
1.1 KiB
1.1 KiB
HTML Website Sources
This directory contains the source files for Clawdie-hosted websites.
Structure
html/
├── clawdie/ # https://clawdie.si
│ ├── index.html
│ ├── css/
│ ├── docs/
│ └── screenshots/
└── osa/ # https://osa.smilepowered.org
└── index.html
Deployment
Files are deployed manually to nginx webroots:
# Deploy clawdie.si
cp html/clawdie/index.html /usr/local/www/clawdie/
cp -r html/clawdie/screenshots /usr/local/www/clawdie/
# Deploy osa.smilepowered.org
cp html/osa/index.html /usr/local/www/osa/
Future: Astro Migration
These hand-edited HTML files will be migrated to Astro components.
See .agent/skills/astro/SKILL.md for the migration plan.
site/directory will contain the Astro projectnpm run buildwill output to/usr/local/www/clawdie/- This
html/directory will become a reference/archive
Notes
- Both sites share similar CSS structure (Cormorant Garamond + DM Mono)
- clawdie.si: Dark theme (
--cream: #0d1117) - osa.smilepowered.org: Light theme (
--cream: #f5f0e8)