Files
fabula-ultima-html/html/108.html
Drew Malzahn c75cd188c1 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>
2026-06-06 03:36:35 +00:00

56 lines
2.5 KiB
HTML
Raw 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.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tsukihime Character Profile</title>
<link rel="stylesheet" href="book-page.css">
</head>
<body>
<!-- Meta/Contextual Information (Visually minimal) -->
<div style="text-align: center; margin-bottom: 30px; color: #aaa;">
<span>107</span> | <span>W</span> | <span>33 PROTAGONISTS</span>
</div>
<h1>TSUKIHIME</h1>
<!-- BASIC INFORMATION SECTION -->
<section class="basic-info">
<h2>BASIC INFORMATION</h2>
<dl>
<dt>Identity:</dt>
<dd>Incarnation of the Moon God</dd>
<dt>Theme:</dt>
<dd>Duty</dd>
<dt>Origin:</dt>
<dd>Second Moon</dd>
<dt>Quirk:</dt>
<dd>The Long Dream</dd>
<dt>Signature weapons:</dt>
<dd><strong style="color: #a0c4ff;">Bows</strong></dd>
</dl>
</section>
<!-- TSUKIHIME IN DETAIL SECTION -->
<section class="detail-info">
<h2>TSUKIHIME IN DETAIL</h2>
<ul class="lore-list">
<li>According to legend, when a grave danger looms over the Land of Elms and the Second Moon shines blue, the Moon God incarnates in the world with the shooting of an arrow. This time, the guardian is a young woman of elegant bearing and brave heart, albeit a bit stubborn. The Priestess named her Tsukihime, or Moon Princess.</li>
<li>Tsukihimes Duty is to quell the restless spirits and purify the springs of the four rivers that cross the region. The task will prove much bigger than expected, and she cannot do it alone.</li>
<li>The moons favor grants Tsukihime a special affinity toward nature her Classes are Chimerist, Invoker and Sharpshooter.</li>
<li>Tsukihimes Player should be the go-to person for everything related to the Moon God, the Second Moon and the spirit world. At the same time, the Princess knowledge of human society is extremely limited and, above all, outdated.</li>
<li>Every incarnation of the Moon God is destined to return to the stars once their purpose is fulfilled. Hence, its essential that Tsukihime and the rest of the group develop strong emotional bonds over the course of the campaign. Perhaps these bonds will be powerful enough to prevent a painful farewell.</li>
</ul>
</section>
<div class="guest-customer">
</div>
</body>
</html>