Files
quick-access-hono/templates/book.template.html
T
qwsdcvghyu89 363d894c79 Initial commit
2026-06-17 07:19:25 +10:00

47 lines
933 B
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>Novel #{id} — Chapters {min}{max}</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
background: #111;
color: #ddd;
font-family: sans-serif;
font-size: 14pt;
line-height: 1.8;
max-width: 820px;
margin: 0 auto;
padding: 2rem 1.5rem 4rem;
}
header {
border-bottom: 1px solid #333;
padding-bottom: 0.75rem;
margin-bottom: 2rem;
color: #888;
font-size: 0.85rem;
}
div[id^="chap"] {
margin-bottom: 3.5rem;
padding-top: 1rem;
border-top: 1px solid #222;
}
p {
margin: 0.4rem 0;
}
</style>
</head>
<body>
<header>id: {id} &nbsp;|&nbsp; chapters {min}{max}</header>
<main>
{content}
</main>
</body>
</html>