mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
6a9cebae22
- Add KJVNav.initSimpleNav() for DRY keyboard navigation across site - Fix broken keyboard nav on 10+ resource pages (orphaned JS code) - Left arrow on chapters now does browser back - Add non-writing prophets: Moses, Samuel, Nathan, Elijah, Elisha - Redesign chapter PDFs with glossary, cross-refs, book intro - Style sidenotes as inline notes in all PDFs (fix checkbox squares) - More liberal word studies in PDF output (for_pdf parameter) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
133 lines
3.0 KiB
HTML
133 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ guide.title }} - Study Guide</title>
|
|
<style>
|
|
@page {
|
|
size: letter;
|
|
margin: 0.85in;
|
|
@bottom-center {
|
|
content: counter(page);
|
|
font-family: "et-book", Georgia, serif;
|
|
font-size: 10pt;
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: "et-book", Georgia, "Times New Roman", serif;
|
|
font-size: 11pt;
|
|
line-height: 1.65;
|
|
color: #111;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24pt;
|
|
font-weight: normal;
|
|
margin: 0 0 0.15in 0;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.subtitle {
|
|
font-style: italic;
|
|
color: #666;
|
|
margin-bottom: 0.3in;
|
|
}
|
|
|
|
section {
|
|
margin-bottom: 0.35in;
|
|
}
|
|
|
|
section h2 {
|
|
font-size: 16pt;
|
|
font-weight: normal;
|
|
margin-bottom: 0.15in;
|
|
}
|
|
|
|
.verses {
|
|
margin-bottom: 0.2in;
|
|
}
|
|
|
|
.verse-item {
|
|
margin-bottom: 0.12in;
|
|
padding-left: 0.2in;
|
|
border-left: 2px solid #ddd;
|
|
}
|
|
|
|
.verse-ref {
|
|
font-weight: 600;
|
|
color: #444;
|
|
}
|
|
|
|
.verse-text {
|
|
font-style: italic;
|
|
color: #555;
|
|
}
|
|
|
|
.content {
|
|
text-align: justify;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 0.4in;
|
|
font-size: 9pt;
|
|
color: #888;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Style sidenotes as inline notes for PDF */
|
|
.margin-toggle,
|
|
.sidenote-number,
|
|
input[type="checkbox"] {
|
|
display: none !important;
|
|
}
|
|
|
|
.sidenote,
|
|
.marginnote {
|
|
display: block;
|
|
float: none;
|
|
width: 100%;
|
|
margin: 0.15in 0;
|
|
padding: 0.1in 0.15in;
|
|
font-size: 9pt;
|
|
font-style: italic;
|
|
color: #555;
|
|
background: #f9f9f9;
|
|
border-left: 2px solid #ccc;
|
|
}
|
|
|
|
.sidenote::before {
|
|
content: "Note: ";
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{ guide.title }}</h1>
|
|
<p class="subtitle">{{ guide.description }}</p>
|
|
|
|
{% for section in guide.sections %}
|
|
<section>
|
|
<h2>{{ section.title }}</h2>
|
|
|
|
{% if section.verse_texts %}
|
|
<div class="verses">
|
|
{% for verse in section.verse_texts %}
|
|
<div class="verse-item">
|
|
<div class="verse-ref">{{ verse.reference }}</div>
|
|
<div class="verse-text">{{ verse.text }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="content">{{ section.content | format_lists | safe }}</div>
|
|
</section>
|
|
{% endfor %}
|
|
|
|
<div class="footer">From KJV Study • kjvstudy.org</div>
|
|
</body>
|
|
</html>
|