new source of truth
Some checks are pending
/ deploy (push) Waiting to run

This commit is contained in:
Loyyd 2026-06-11 10:01:45 +02:00
parent 9d0a823351
commit d74495ddef
936 changed files with 80 additions and 69 deletions

View file

@ -6,8 +6,10 @@ explicitly says a change must preserve a URL.
## What This Is
This is an Astro-built static website. The current source content is exported
HTML plus CSS, JavaScript, images, PDFs, and other static assets.
This is an Astro-built static website. `content/` is the future source of truth
for editable blog and speech content. `archive-source/` keeps legacy exported
HTML plus CSS, JavaScript, images, PDFs, and other static assets while the
migration continues.
## Working Rules
@ -24,13 +26,13 @@ HTML plus CSS, JavaScript, images, PDFs, and other static assets.
| Path | What it is |
|------|------------|
| `website/index.html` | Home page |
| `website/about.html` | About page |
| `website/contact.html` | Contact page with the form |
| `website/` | Source HTML pages, blog posts, speech archives, categories, and tags |
| `website/PAGES.md` | Map from old folder paths to current HTML paths |
| `content/` | Extracted Markdown archive for speeches and blog posts |
| `src/pages/` | Astro endpoints that generate static output from `website/` |
| `content/` | Future source of truth for editable speeches and blog posts |
| `archive-source/index.html` | Legacy exported home page |
| `archive-source/about.html` | Legacy exported about page |
| `archive-source/contact.html` | Legacy exported contact page with the form |
| `archive-source/` | Legacy exported HTML pages, blog posts, speech archives, categories, and tags |
| `archive-source/PAGES.md` | Map from old folder paths to current HTML paths |
| `src/pages/` | Astro endpoints that generate static output from `archive-source/` where routes are not migrated |
| `src/components/` | Astro components for shared layout migration |
| `dist/` | Generated static output from `npm run build` |
| `css/` | Site-level stylesheets |