-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.html
More file actions
36 lines (32 loc) · 1.44 KB
/
Copy pathbook.html
File metadata and controls
36 lines (32 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Book breakdown — Bookworm</title>
<meta name="description" content="The full Bookworm breakdown: spoiler-safe summary, personal match score, reading signals and a straight read-or-skip verdict.">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='9' fill='%2308304c'/><path d='M7 9.5c3.4-1.3 5.9-1.3 8.6.6v13c-2.7-1.9-5.2-1.9-8.6-.6z' fill='%23fff'/><path d='M25 9.5c-3.4-1.3-5.9-1.3-8.6.6v13c2.7-1.9 5.2-1.9 8.6-.6z' fill='%23ffa130'/></svg>">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="assets/css/style.css">
<script>
try {
var t = localStorage.getItem('bookworm:theme');
if (t === 'light' || t === 'dark') document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
</script>
<style>
@media (max-width: 900px) {
[data-book] .grid[style*="300px"] { grid-template-columns: 1fr !important; gap: var(--s8) !important; }
[data-book] .cover { max-width: 260px; }
}
</style>
</head>
<body data-page="book">
<header class="nav-shell" data-nav></header>
<main class="page-head" data-book></main>
<footer class="footer" data-footer></footer>
<script src="assets/js/data.js"></script>
<script src="assets/js/art.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>