Files
www.dangerouswonder.org/AGENTS.md

45 lines
3.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# AGENTS.md
## What this is
Static HTML/CSS/JS website. No build tools, no npm, no frameworks, no templating. Every page is a standalone `.html` file at the root, sharing `css/style.css` and `js/main.js`.
## Core constraints
- **Factual accuracy is critical.** All real-world claims (dates, numbers, patent numbers, scientific facts) must be verifiable. When adding or editing content, verify specific claims — especially patent numbers, statistics, and historical details. Past sessions found 80+ factual errors across pages; assume any new content carries the same risk.
- **`about.html` describes the site's purpose and theology** — faith filled with astonishment at God's creation, viewed through the lens of Genesis (six days of creation). Do not add fictional lore back.
- **Background must be `#ffffff`** (pure white), not cream or off-white. The owner has clipart/images that float on white backgrounds and look wrong on any other color.
- **No comments in code** unless explicitly requested.
## Style / aesthetic
Late-90s/early-2000s "hidden gem" website styled like a DK reference book:
- Georgia / Times New Roman serif fonts
- Images with drop shadows (`box-shadow`)
- Colored section bars (each topic has a distinct color)
- Fake visitor counter (localStorage-based), "Best viewed at 1024×768" footer, "Last updated" timestamp
- Konami code easter egg, double-click title reveals hidden text (`<span class="easter-egg">`), console tips
- **Clipart decorations** — transparent PNGs from `img/` folder placed whimsically throughout articles using CSS classes: `.clipart` (centered), `.clipart-left` / `.clipart-right` (floating beside text), `.clipart-section` (top of page), `.clipart-divider` (between sections), `.clipart-inline` (within text). Clipart should feel like 90s web decoration — small, scattered, thematically matched to article content.
## Known issues
- **Saluting Device patent (US 656,278, 1900)** on `inventions.html` was NOT verified. It may be incorrect. Check Google Patents before assuming it's real.
## Page structure
| File | Topic | Body class |
|---|---|---|
| `index.html` | Home / card grid | (none) |
| `natural-world.html` | Forests, oceans, symbiosis, extremophiles | `section-natural-world` |
| `inventions.html` | Accidental inventions, printing press, strange patents | `section-inventions` |
| `phenomena.html` | Ball lightning, placebo, synesthesia, Mpemba effect | `section-phenomena` |
| `maps.html` | Cartography, phantom islands, Tristan da Cunha, Derinkuyu | `section-maps` |
| `human-body.html` | Brain, gut, skeleton, eye, blood, phantom limbs | `section-human-body` |
| `space.html` | Universe scale, neutron stars, dark matter, Voyager | `section-space` |
| `about.html` | Site purpose: faith, wonder, creation | `section-about` |
## Development
No build or serve command needed — open any `.html` file directly in a browser. For local dev with live reload, any static server works (`python3 -m http.server`, etc.).
No tests, no linting, no CI.