Redesign book interior: Illuminated Nocturne aesthetic
Replaces Georgia + per-story color theming with a unified premium fairytale look: Cormorant Garamond (display/titles) + Lora (body), warm cream text pages (#faf8f2 with paper noise texture), deep ink typography (#1e1b18) throughout — no per-story text color variation. - fonts/: committed WOFF2 files via @fontsource packages; auto-copied by scripts/setup-fonts.js (runs as postinstall) - Typography: story number in small caps, hairline rule, ❧ ornament - Layout: cream background replaces per-story bg, radial glow on title - build.js: passes frontMatter (author, year) to templates - Templates: author byline on title page, cleaner imprint page Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+8
-3
@@ -56,10 +56,15 @@ async function loadStories() {
|
||||
return { stories, finale: finale || {} };
|
||||
}
|
||||
|
||||
async function build() {
|
||||
const { stories, finale } = await loadStories();
|
||||
async function loadFrontMatter() {
|
||||
const raw = await readFile(join(root, 'content', '00-front-matter.md'), 'utf-8');
|
||||
return matter(raw).data;
|
||||
}
|
||||
|
||||
const html = env.render('book.html', { stories, finale });
|
||||
async function build() {
|
||||
const [{ stories, finale }, frontMatter] = await Promise.all([loadStories(), loadFrontMatter()]);
|
||||
|
||||
const html = env.render('book.html', { stories, finale, frontMatter });
|
||||
|
||||
const outPath = join(root, 'output', 'book.html');
|
||||
await writeFile(outPath, html, 'utf-8');
|
||||
|
||||
Reference in New Issue
Block a user