feat: Add book viewer at /book with shared design system
- Add html/index.html: book viewer with auto-discovering sidebar, prev/next navigation, keyboard shortcuts, and URL hash persistence - Add html/book-page.css: shared stylesheet for all book pages derived from fabula-ultima-sheet.css (dark theme, CSS variables, Cinzel/ Crimson Text fonts, common class styles) - Add book.js entry point so webpack injects the shared CSS into the book viewer; update webpack.config.js for two entry points, split CSS chunk, CopyWebpackPlugin for book pages, and /book dev server rewrite rule - Add scripts/strip_watermark.py: removes "Guest Customer (Order #52072168)" watermark artifacts from all 210 book pages - Add scripts/restyle_book.py: strips per-page <style> blocks and injects <link rel="stylesheet" href="book-page.css"> into all pages - Update Justfile deploy to scp -r dist/* for the new /book subtree Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
29
html/209.html
Normal file
29
html/209.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document Summary</title>
|
||||
<link rel="stylesheet" href="book-page.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<section class="story-section">
|
||||
<h1>Our Story</h1>
|
||||
<p>This endeavor will bring new kindness and positive change.</p>
|
||||
<!-- Since the raw text was heavily repetitive, we treat it as a core message block -->
|
||||
<p>We are dedicated to sharing our story of impact and community growth. Our goal is to bring renewed kindness to all.</p>
|
||||
</section>
|
||||
|
||||
<h2>Customer Details</h2>
|
||||
<div class="customer-info">
|
||||
<p><strong>Customer Type:</strong> </p>
|
||||
<p><strong>Order Identification:</strong> </p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user