Files
kjvstudy.org/kjvstudy_org/templates/index.html
T
kennethreitz 9bb2d3d3ff Add comprehensive mobile responsive styles to homepage
Implemented mobile-first responsive design for screens ≤760px to improve
usability on phones and tablets.

Mobile improvements:
- Full-width layouts: removed 60%/70% max-width constraints
- Vertical search form: input and button stack for better mobile UX
- Single-column grids: featured resources and quick links stack vertically
- Optimized spacing: reduced margins and padding for mobile screens
- Better typography: adjusted font sizes for mobile readability
- Touch-friendly: larger tap targets with full-width buttons
- Consistent spacing: unified gaps and margins across components

Before: constrained widths caused cramped layouts on mobile
After: fluid, touch-friendly interface that uses full screen width

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-22 07:51:02 -05:00

534 lines
31 KiB
HTML

{% extends "base.html" %}
{% block title %}The King James Bible{% endblock %}
{% block head %}
<style>
.title-page {
margin: 4rem 0;
}
.title-page h1 {
margin-bottom: 2rem;
}
.title-details {
font-style: italic;
font-size: 1.1rem;
line-height: 1.8;
color: #666;
margin: 0 0 3rem 0;
}
/* Make book names bold throughout */
section a[href^="/book/"] {
font-weight: 600;
}
/* Quick verse lookup */
.verse-lookup {
max-width: 60%;
margin: 2rem 0;
padding: 2rem;
border: 2px solid var(--border-color-darker);
border-radius: 6px;
background: var(--code-bg);
}
.verse-lookup h2 {
margin-top: 0;
font-size: 1.3rem;
}
.lookup-form {
display: flex;
gap: 0.5rem;
margin-top: 1rem;
}
.lookup-input {
flex: 1;
padding: 0.75rem 1rem;
font-size: 1.1rem;
border: 1px solid var(--border-color);
border-radius: 4px;
background: var(--bg-color);
color: var(--text-color);
font-family: inherit;
}
.lookup-input:focus {
outline: none;
border-color: var(--link-color);
}
.lookup-btn {
padding: 0.75rem 1.5rem;
font-size: 1.1rem;
font-weight: 600;
background: var(--link-color);
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background 0.2s;
}
.lookup-btn:hover {
background: var(--link-hover);
}
.lookup-help {
font-size: 0.9rem;
color: var(--text-secondary);
margin-top: 0.5rem;
font-style: italic;
}
/* Featured Resources */
.featured-resources {
max-width: 70%;
margin: 3rem 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.featured-card {
padding: 1.5rem;
border: 1px solid var(--border-color-dark);
border-radius: 6px;
background: var(--bg-color);
transition: all 0.3s;
}
.featured-card:hover {
border-color: var(--link-color);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.featured-card h3 {
margin: 0 0 0.75rem 0;
font-size: 1.2rem;
font-weight: 600;
}
.featured-card h3 a {
border-bottom: none;
}
.featured-card p {
margin: 0.5rem 0;
font-size: 1rem;
line-height: 1.6;
color: var(--text-secondary);
}
.featured-badge {
display: inline-block;
padding: 0.25rem 0.5rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
background: var(--link-color);
color: white;
border-radius: 3px;
margin-bottom: 0.5rem;
}
/* Quick Links Grid */
.quick-links {
max-width: 70%;
margin: 2rem 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.quick-link-btn {
display: block;
padding: 1rem;
text-align: center;
border: 1px solid var(--border-color-dark);
border-radius: 4px;
background: var(--bg-color);
transition: all 0.2s;
}
.quick-link-btn:hover {
border-color: var(--link-color);
background: var(--code-bg);
}
/* Mobile responsive styles */
@media (max-width: 760px) {
.title-page {
margin: 2rem 0;
}
.title-page h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.title-details {
font-size: 1rem;
margin: 0 0 2rem 0;
}
.verse-lookup {
max-width: 100%;
padding: 1.5rem;
margin: 1.5rem 0;
}
.verse-lookup h2 {
font-size: 1.2rem;
}
.lookup-form {
flex-direction: column;
gap: 0.75rem;
}
.lookup-input {
width: 100%;
font-size: 1rem;
padding: 0.75rem;
}
.lookup-btn {
width: 100%;
padding: 0.75rem;
font-size: 1rem;
}
.lookup-help {
font-size: 0.85rem;
line-height: 1.5;
}
.featured-resources {
max-width: 100%;
grid-template-columns: 1fr;
gap: 1rem;
margin: 2rem 0;
}
.featured-card {
padding: 1.25rem;
}
.featured-card h3 {
font-size: 1.1rem;
}
.featured-card p {
font-size: 0.95rem;
}
.quick-links {
max-width: 100%;
grid-template-columns: 1fr;
gap: 0.75rem;
margin: 1.5rem 0;
}
.quick-link-btn {
padding: 0.875rem;
font-size: 0.95rem;
}
/* Adjust epigraph on mobile */
.epigraph {
margin: 2rem 0;
}
.epigraph blockquote {
font-size: 1rem;
}
}
</style>
{% endblock %}
{% block content %}
<div class="title-page">
<h1>The Holy Bible</h1>
<div class="title-details">
Translated out of the Original Tongues and with the Former Translations Diligently Compared and Revised<br/>
by His Majesty's Special Command<br/>
<em>Anno Domini</em> 1611
</div>
</div>
<div class="verse-lookup">
<h2>Search or Navigate</h2>
<form class="lookup-form" onsubmit="return handleSearch(event)">
<input
type="text"
class="lookup-input"
id="verse-lookup-input"
placeholder="Search scripture or jump to verse..."
autocomplete="off"
/>
<button type="submit" class="lookup-btn">Go</button>
</form>
<div class="lookup-help">Navigate: John 3:16, Romans 8, Genesis • Search: love, faith, salvation</div>
</div>
<script>
// Helper function to properly capitalize book names and handle abbreviations
function capitalizeBook(bookName) {
// Map of lowercase to proper case book names (including common abbreviations)
const bookMap = {
// Full names
'genesis': 'Genesis', 'exodus': 'Exodus', 'leviticus': 'Leviticus', 'numbers': 'Numbers',
'deuteronomy': 'Deuteronomy', 'joshua': 'Joshua', 'judges': 'Judges', 'ruth': 'Ruth',
'1 samuel': '1 Samuel', '2 samuel': '2 Samuel', '1 kings': '1 Kings', '2 kings': '2 Kings',
'1 chronicles': '1 Chronicles', '2 chronicles': '2 Chronicles', 'ezra': 'Ezra', 'nehemiah': 'Nehemiah',
'esther': 'Esther', 'job': 'Job', 'psalms': 'Psalms', 'psalm': 'Psalms', 'proverbs': 'Proverbs',
'ecclesiastes': 'Ecclesiastes', 'song of solomon': 'Song of Solomon', 'isaiah': 'Isaiah',
'jeremiah': 'Jeremiah', 'lamentations': 'Lamentations', 'ezekiel': 'Ezekiel', 'daniel': 'Daniel',
'hosea': 'Hosea', 'joel': 'Joel', 'amos': 'Amos', 'obadiah': 'Obadiah', 'jonah': 'Jonah',
'micah': 'Micah', 'nahum': 'Nahum', 'habakkuk': 'Habakkuk', 'zephaniah': 'Zephaniah',
'haggai': 'Haggai', 'zechariah': 'Zechariah', 'malachi': 'Malachi', 'matthew': 'Matthew',
'mark': 'Mark', 'luke': 'Luke', 'john': 'John', 'acts': 'Acts', 'romans': 'Romans',
'1 corinthians': '1 Corinthians', '2 corinthians': '2 Corinthians', 'galatians': 'Galatians',
'ephesians': 'Ephesians', 'philippians': 'Philippians', 'colossians': 'Colossians',
'1 thessalonians': '1 Thessalonians', '2 thessalonians': '2 Thessalonians',
'1 timothy': '1 Timothy', '2 timothy': '2 Timothy', 'titus': 'Titus', 'philemon': 'Philemon',
'hebrews': 'Hebrews', 'james': 'James', '1 peter': '1 Peter', '2 peter': '2 Peter',
'1 john': '1 John', '2 john': '2 John', '3 john': '3 John', 'jude': 'Jude', 'revelation': 'Revelation',
// Common abbreviations
'gen': 'Genesis', 'ge': 'Genesis', 'exo': 'Exodus', 'ex': 'Exodus', 'lev': 'Leviticus',
'le': 'Leviticus', 'num': 'Numbers', 'nu': 'Numbers', 'deut': 'Deuteronomy', 'dt': 'Deuteronomy',
'josh': 'Joshua', 'jos': 'Joshua', 'judg': 'Judges', 'jdg': 'Judges', 'ru': 'Ruth',
'1 sam': '1 Samuel', '1sam': '1 Samuel', '1s': '1 Samuel', '2 sam': '2 Samuel', '2sam': '2 Samuel', '2s': '2 Samuel',
'1 ki': '1 Kings', '1ki': '1 Kings', '1k': '1 Kings', '2 ki': '2 Kings', '2ki': '2 Kings', '2k': '2 Kings',
'1 chr': '1 Chronicles', '1chr': '1 Chronicles', '1ch': '1 Chronicles', '2 chr': '2 Chronicles', '2chr': '2 Chronicles', '2ch': '2 Chronicles',
'ezr': 'Ezra', 'neh': 'Nehemiah', 'ne': 'Nehemiah', 'est': 'Esther', 'ps': 'Psalms', 'psa': 'Psalms',
'prov': 'Proverbs', 'pr': 'Proverbs', 'eccl': 'Ecclesiastes', 'ec': 'Ecclesiastes',
'song': 'Song of Solomon', 'sos': 'Song of Solomon', 'ss': 'Song of Solomon',
'isa': 'Isaiah', 'is': 'Isaiah', 'jer': 'Jeremiah', 'je': 'Jeremiah', 'lam': 'Lamentations', 'la': 'Lamentations',
'ezek': 'Ezekiel', 'eze': 'Ezekiel', 'ezk': 'Ezekiel', 'dan': 'Daniel', 'da': 'Daniel',
'hos': 'Hosea', 'ho': 'Hosea', 'joe': 'Joel', 'jl': 'Joel', 'am': 'Amos', 'ob': 'Obadiah',
'jon': 'Jonah', 'mic': 'Micah', 'mi': 'Micah', 'nah': 'Nahum', 'na': 'Nahum',
'hab': 'Habakkuk', 'hb': 'Habakkuk', 'zep': 'Zephaniah', 'zph': 'Zephaniah',
'hag': 'Haggai', 'hg': 'Haggai', 'zech': 'Zechariah', 'zec': 'Zechariah', 'zch': 'Zechariah',
'mal': 'Malachi', 'mat': 'Matthew', 'mt': 'Matthew', 'mar': 'Mark', 'mk': 'Mark', 'mrk': 'Mark',
'luk': 'Luke', 'lk': 'Luke', 'joh': 'John', 'jn': 'John', 'act': 'Acts', 'ac': 'Acts',
'rom': 'Romans', 'ro': 'Romans', '1 cor': '1 Corinthians', '1cor': '1 Corinthians', '1co': '1 Corinthians',
'2 cor': '2 Corinthians', '2cor': '2 Corinthians', '2co': '2 Corinthians',
'gal': 'Galatians', 'ga': 'Galatians', 'eph': 'Ephesians', 'ep': 'Ephesians',
'phil': 'Philippians', 'php': 'Philippians', 'ph': 'Philippians',
'col': 'Colossians', 'co': 'Colossians', '1 thess': '1 Thessalonians', '1thess': '1 Thessalonians', '1th': '1 Thessalonians',
'2 thess': '2 Thessalonians', '2thess': '2 Thessalonians', '2th': '2 Thessalonians',
'1 tim': '1 Timothy', '1tim': '1 Timothy', '1ti': '1 Timothy', '2 tim': '2 Timothy', '2tim': '2 Timothy', '2ti': '2 Timothy',
'tit': 'Titus', 'ti': 'Titus', 'phm': 'Philemon', 'pm': 'Philemon',
'heb': 'Hebrews', 'he': 'Hebrews', 'jam': 'James', 'jas': 'James', 'jm': 'James',
'1 pet': '1 Peter', '1pet': '1 Peter', '1pe': '1 Peter', '1p': '1 Peter',
'2 pet': '2 Peter', '2pet': '2 Peter', '2pe': '2 Peter', '2p': '2 Peter',
'1 joh': '1 John', '1joh': '1 John', '1jn': '1 John', '2 joh': '2 John', '2joh': '2 John', '2jn': '2 John',
'3 joh': '3 John', '3joh': '3 John', '3jn': '3 John', 'jud': 'Jude',
'rev': 'Revelation', 're': 'Revelation'
};
return bookMap[bookName.toLowerCase()] || bookName;
}
function handleSearch(event) {
event.preventDefault();
const input = document.getElementById('verse-lookup-input').value.trim();
if (!input) {
return false;
}
// First, try to parse as a verse/chapter/book reference
// Formats: "Book Chapter:Verse", "Book Chapter", "Book"
// Examples: "John 3:16", "Psalm 23", "Genesis"
// Try to match: Book Chapter:Verse
// Use greedy matching (.+) so it captures multi-word book names like "1 John" or "Song of Solomon"
let match = input.match(/^(.+)\s+(\d+):(\d+)$/i);
if (match) {
const book = capitalizeBook(match[1].trim());
const chapter = match[2];
const verse = match[3];
window.location.href = `/book/${encodeURIComponent(book)}/chapter/${chapter}/verse/${verse}`;
return false;
}
// Try to match: Book Chapter (go to chapter)
match = input.match(/^(.+)\s+(\d+)$/i);
if (match) {
const book = capitalizeBook(match[1].trim());
const chapter = match[2];
window.location.href = `/book/${encodeURIComponent(book)}/chapter/${chapter}`;
return false;
}
// Check if input looks like it might be a book name
// Only treat as book if it has: number prefix (1/2/3) OR multiple words OR matches common books
const hasNumberPrefix = /^[123]\s+/i.test(input);
const hasMultipleWords = /\s+/.test(input);
const commonBooks = ['genesis', 'exodus', 'leviticus', 'numbers', 'deuteronomy',
'joshua', 'judges', 'ruth', 'samuel', 'kings', 'chronicles',
'ezra', 'nehemiah', 'esther', 'job', 'psalms', 'proverbs',
'ecclesiastes', 'isaiah', 'jeremiah', 'lamentations', 'ezekiel',
'daniel', 'hosea', 'joel', 'amos', 'obadiah', 'jonah', 'micah',
'nahum', 'habakkuk', 'zephaniah', 'haggai', 'zechariah', 'malachi',
'matthew', 'mark', 'luke', 'john', 'acts', 'romans', 'corinthians',
'galatians', 'ephesians', 'philippians', 'colossians', 'thessalonians',
'timothy', 'titus', 'philemon', 'hebrews', 'james', 'peter',
'jude', 'revelation'];
const matchesCommonBook = commonBooks.includes(input.toLowerCase());
if (hasNumberPrefix || hasMultipleWords || matchesCommonBook) {
// Try to navigate to book
const book = capitalizeBook(input);
window.location.href = `/book/${encodeURIComponent(book)}`;
return false;
}
// Otherwise, treat it as a search query
window.location.href = `/search?q=${encodeURIComponent(input)}`;
return false;
}
// Add keyboard shortcut: Press '/' to focus the search input
document.addEventListener('keydown', function(e) {
if (e.key === '/' && !e.metaKey && !e.ctrlKey && !e.altKey) {
const activeElement = document.activeElement;
if (activeElement.tagName !== 'INPUT' && activeElement.tagName !== 'TEXTAREA') {
e.preventDefault();
document.getElementById('verse-lookup-input')?.focus();
}
}
});
</script>
<div class="epigraph">
<blockquote>
<p>{{ daily_verse.text | link_names | safe }}</p>
<footer><a href="/book/{{ daily_verse.book }}/chapter/{{ daily_verse.chapter }}/verse/{{ daily_verse.verse }}">{{ daily_verse.reference }}</a><a href="/verse-of-the-day">Verse of the Day</a></footer>
</blockquote>
</div>
<section>
<h2><a href="/resources">Featured Resources</a></h2>
<div class="featured-resources">
<div class="featured-card">
<span class="featured-badge">New</span>
<h3><a href="/tetragrammaton">The Tetragrammaton</a></h3>
<p>An in-depth exploration of the sacred four-letter name of God (יהוה), examining its pronunciation, etymology, theological significance, and Christ's identification with YHWH.</p>
</div>
<div class="featured-card">
<h3><a href="/biblical-covenants">Biblical Covenants</a></h3>
<p>Study the five major covenants God established throughout Scripture—from Noah to the New Covenant in Christ's blood—understanding their progressive revelation and redemptive significance.</p>
</div>
<div class="featured-card">
<h3><a href="/parables">Parables of Jesus</a></h3>
<p>Comprehensive analysis of Christ's parables, each with detailed interpretation, Greek word studies, and theological application. From the Sower to the Pharisee and Publican.</p>
</div>
<div class="featured-card">
<h3><a href="/names-of-god">Names of God</a></h3>
<p>Explore thirteen divine names and titles revealed in Scripture—Elohim, YHWH, Adonai, El Shaddai, Jehovah-Jireh, and more—each revealing distinct aspects of God's character.</p>
</div>
</div>
<p style="text-align: center; margin-top: 1.5rem;"><a href="/resources">View all resources →</a></p>
</section>
<section>
<h2>Quick Access</h2>
<div class="quick-links">
<a href="/reading-plans" class="quick-link-btn">Reading Plans</a>
<a href="/topics" class="quick-link-btn">Topical Index</a>
<a href="/family-tree" class="quick-link-btn">Biblical Genealogies</a>
<a href="/biblical-timeline" class="quick-link-btn">Timeline</a>
<a href="/random-verse" class="quick-link-btn">Random Verse</a>
</div>
</section>
<section>
<p><span class="newthought"><a href="/books">The Authorized Version</a></span>, commonly known as the King James Bible, stands as one of the most influential works in the English language. Commissioned by King James I of England in 1604 and completed seven years hence by a company of forty-seven scholars working from the <em>Textus Receptus</em> (Greek) and <em>Masoretic Text</em> (Hebrew), this translation has shaped not merely literature and law, but the very fabric of spiritual and moral discourse for more than four centuries.<label for="sn-translation" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-translation" class="margin-toggle"/><span class="sidenote">The translators consulted previous English versions (Tyndale, Coverdale, Geneva) while working primarily from original languages. Their Hebrew text derived from the <em>Ben Chayyim Masoretic tradition</em>; their Greek New Testament followed Erasmus, Stephanus, and Beza. The result: a translation of unsurpassed majesty and accuracy for its time.</span></p>
<p>The translators themselves, in their address "To the most high and mightie Prince, James," wrote that they sought to make "the very vulgar" acquainted with God's Word—not in crude simplicity, but with such scholarly exactitude and linguistic majesty that the sacred text might be apprehended by learned and unlearned alike. Drawing upon the Hebrew תּוֹרָה (<em>Torah</em>, Law), נְבִיאִים (<em>Nevi'im</em>, Prophets), and כְּתוּבִים (<em>Ketuvim</em>, Writings)—the threefold division of the Old Testament—alongside the Greek διαθήκη καινή (<em>diathēkē kainē</em>, New Covenant), their labor produced a work of such enduring power that its cadences echo still through English prose.<label for="sn-canon" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-canon" class="margin-toggle"/><span class="sidenote">The Hebrew acronym <strong>TaNaKh</strong> (תנ״ך) derives from <strong>T</strong>orah, <strong>N</strong>evi'im, <strong>K</strong>etuvim—the three divisions of the Hebrew Bible. This ordering differs from Christian arrangements but reflects the historical development of the Hebrew canon, confirmed by Christ's reference to 'the law of Moses, and the prophets, and the psalms' (Luke 24:44).</span></p>
<p>This digital edition presents the 1769 Oxford Standard text—the received form of the Authorized Version—integrated with commentary drawn from the most eminent divines and critical scholarship. Here the reader will find not merely the biblical text, but apparatus for its proper understanding: original language analysis (examining Hebrew שֹׁרֶשׁ <em>shoresh</em>, word roots, and Greek λέξις <em>lexis</em>, vocabulary), marginal notes explicating difficult passages, comprehensive cross-references tracing themes throughout Scripture, and such geographical and historical context as may illumine the sacred page. The goal remains that articulated by the translators themselves: that "the Scripture may speake like it selfe... that it may be understood even of the very vulgar."</p>
</section>
<section>
<h2>The Old Testament</h2>
<p><span class="newthought">The Law</span>,<label for="sn-torah" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-torah" class="margin-toggle"/>
<span class="sidenote">The Hebrew תּוֹרָה (<em>Torah</em>, 'instruction' or 'law'), or Pentateuch (Greek πεντάτευχος, 'five scrolls')—traditionally ascribed to Moses, the mediator of the old covenant. Jewish tradition subdivides Torah into 613 commandments (מִצְוֹת, <em>mitzvot</em>): 248 positive commands and 365 prohibitions. These form the foundation upon which all subsequent scripture rests, containing both the primeval history of mankind (Genesis 1-11) and the particular covenant established with Israel through Abraham, Isaac, and Jacob.</span>
or Books of Moses, constitute the foundation of divine revelation. Beginning with <em>Bereshit</em> (בְּרֵאשִׁית, 'In the beginning')—the very first word of Scripture—proceeding through the patriarchal dispensation, and culminating in the giving of the Law at Sinai where YHWH revealed His name and character, here is recorded the establishment of God's <em>brit</em> (בְּרִית, covenant) with His chosen people: {% for book in ['Genesis', 'Exodus', 'Leviticus', 'Numbers', 'Deuteronomy'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
<p><span class="newthought">The Historical Books</span><label for="sn-history" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-history" class="margin-toggle"/>
<span class="sidenote">These chronicles record Israel's history from Joshua's conquest of Canaan through the divided kingdom, the Babylonian captivity, and the restoration under Ezra and Nehemiah. They demonstrate God's faithfulness to His covenant despite Israel's repeated unfaithfulness.</span>
narrate the unfolding drama of Israel's occupation of Canaan, the establishment and dissolution of the monarchy, the exile to Babylon, and the subsequent restoration. Through triumph and tragedy alike, these records demonstrate the providence of God working through the affairs of nations: {% for book in ['Joshua', 'Judges', 'Ruth', '1 Samuel', '2 Samuel', '1 Kings', '2 Kings', '1 Chronicles', '2 Chronicles', 'Ezra', 'Nehemiah', 'Esther'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
<p><span class="newthought">The Wisdom Literature</span><label for="sn-wisdom" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-wisdom" class="margin-toggle"/>
<span class="sidenote">The <em>Ḥokhmah</em>, or Wisdom books, explore the deepest questions of human existence: the problem of suffering, the nature of righteous living, the brevity of life, and the soul's relationship with God. Their poetic form elevates them to the highest achievements of Hebrew literature.</span>
comprises those books wherein are considered the weightiest questions of human existence—the nature of suffering, the vanity of earthly pursuits, the fear of the LORD as the beginning of wisdom, and the soul's yearning for communion with the Divine: {% for book in ['Job', 'Psalms', 'Proverbs', 'Ecclesiastes', 'Song of Solomon'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
<p><span class="newthought">The Prophetic Books</span><label for="sn-prophets" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-prophets" class="margin-toggle"/>
<span class="sidenote">The נְבִיאִים (<em>Nevi'im</em>, Prophets) spoke as God's mouthpieces—the Hebrew נָבִיא (<em>navi</em>) derives from a root meaning 'to bubble forth' or 'announce.' They functioned as covenant prosecutors, declaring 'Thus saith the LORD' (כֹּה אָמַר יְהוָה, <em>koh amar YHWH</em>). Their oracles combine fierce denunciation of sin with tender promises of restoration, containing numerous Messianic prophecies (הַמָּשִׁיחַ, <em>ha-Mashiach</em>) fulfilled in Christ.</span>
preserve the oracles of those men whom God raised up to call His people to repentance, to pronounce <em>mishpat</em> (מִשְׁפָּט, judgment) upon the nations, and to foretell the coming of Messiah. From Isaiah's vision of the suffering Servant (עֶבֶד, <em>eved</em>) to Malachi's promise of Elijah's return, these books contain some of the most sublime passages in all Scripture: {% for book in ['Isaiah', 'Jeremiah', 'Lamentations', 'Ezekiel', 'Daniel', 'Hosea', 'Joel', 'Amos', 'Obadiah', 'Jonah', 'Micah', 'Nahum', 'Habakkuk', 'Zephaniah', 'Haggai', 'Zechariah', 'Malachi'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
</section>
<section>
<h2>The New Testament</h2>
<p><span class="newthought">The Holy Gospels</span><label for="sn-gospels" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-gospels" class="margin-toggle"/>
<span class="sidenote">The εὐαγγέλιον (<em>euangelion</em>, 'good news')—four distinct accounts of the incarnation, ministry, passion, and resurrection of our Lord Jesus Christ. Matthew presents Christ as the βασιλεύς (<em>basileus</em>, King) of the Jews; Mark, as the suffering δοῦλος (<em>doulos</em>, Servant); Luke, as the perfect ἄνθρωπος (<em>anthropos</em>, Man); John, as the eternal Λόγος (<em>Logos</em>, Word) made flesh. These four 'living creatures' (Revelation 4:7) provide comprehensive witness to the God-man.</span>
present the life, teaching, death, and resurrection of our Lord Jesus Christ. These four witnesses—Matthew, Mark, Luke, and John—though writing from different perspectives and to different audiences, unite in their testimony to the central fact of human history: that the eternal Λόγος (Logos, Word) became σάρξ (<em>sarx</em>, flesh) and ἐσκήνωσεν (<em>eskenosen</em>, 'tabernacled') among us: {% for book in ['Matthew', 'Mark', 'Luke', 'John'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
<p><span class="newthought">The Acts of the Apostles</span><label for="sn-acts" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-acts" class="margin-toggle"/>
<span class="sidenote">Luke's second treatise chronicles Christ's ἀνάληψις (<em>analepsis</em>, ascension), the descent of the Πνεῦμα Ἅγιον (<em>Pneuma Hagion</em>, Holy Spirit) at Pentecost, and the subsequent expansion of the ἐκκλησία (<em>ekklesia</em>, church) from Jerusalem to Rome. The book demonstrates how the εὐαγγέλιον (gospel) spread 'unto the uttermost part of the earth' through the μαρτυρία (<em>martyria</em>, witness) of the apostles—Peter representing ministry to Jews, Paul to Gentiles.</span>
and the Epistles contain the history of the primitive church and the doctrinal instruction given to the early Christian communities. Acts records the establishment and growth of the church following Pentecost, while the ἐπιστολαί (<em>epistolai</em>, letters) of Paul, Peter, John, James, and Jude expound Christian διδαχή (<em>didache</em>, doctrine)—justification by πίστις (<em>pistis</em>, faith), sanctification through the Spirit, the nature of ἀγάπη (<em>agape</em>, divine love), and the παρουσία (<em>parousia</em>, coming) of Christ—providing pastoral guidance for believers: {% for book in ['Acts', 'Romans', '1 Corinthians', '2 Corinthians', 'Galatians', 'Ephesians', 'Philippians', 'Colossians', '1 Thessalonians', '2 Thessalonians', '1 Timothy', '2 Timothy', 'Titus', 'Philemon', 'Hebrews', 'James', '1 Peter', '2 Peter', '1 John', '2 John', '3 John', 'Jude'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% if not loop.last %}, {% endif %}{% endif %}{% endfor %}.</p>
<p><span class="newthought">The Revelation of St. John the Divine</span><label for="sn-revelation" class="margin-toggle sidenote-number"></label>
<input type="checkbox" id="sn-revelation" class="margin-toggle"/>
<span class="sidenote">The Ἀποκάλυψις (<em>Apokalypsis</em>, 'unveiling' or 'revelation')—presents in highly symbolic imagery the ultimate triumph of Christ over all earthly and spiritual powers. Written in a unique blend of Hebrew prophetic tradition and Greek apocalyptic style, it employs vivid symbolism: the ἀρνίον (<em>arnion</em>, Lamb), the θηρίον (<em>therion</em>, Beast), the πόρνη (<em>porne</em>, Harlot). It concludes the canon with visions of κρίσις (<em>krisis</em>, judgment) and the restoration of all things in the Καινὴ Ἱερουσαλήμ (<em>Kaine Hierousalem</em>, New Jerusalem).</span>
concludes the canon with visions of the ἔσχατα (<em>eschata</em>, last things), the final judgment, and the establishment of the καινὸς οὐρανὸς καὶ καινὴ γῆ (<em>kainos ouranos kai kaine ge</em>, new heaven and new earth). This prophetic book, given to John while exiled on Patmos, unveils the ultimate νίκη (<em>nike</em>, victory) of the Lamb and the τελείωσις (<em>teleiosis</em>, consummation) of God's redemptive plan: {% for book in ['Revelation'] %}{% if book in books %}<a href="/book/{{ book }}">{{ book }}</a>{% endif %}{% endfor %}.</p>
</section>
<section>
<h2>Study Guides</h2>
{% for category, guides in study_guides.items() %}
<p><span class="newthought">{{ category }}</span>
{% for guide in guides %}<a href="/study-guides/{{ guide.slug }}">{{ guide.title }}</a>{% if not loop.last %}, {% endif %}{% endfor %}</p>
{% endfor %}
</section>
<section>
<h2>Resources</h2>
<p><span class="newthought">Browse all <a href="/resources">Theological Resources</a></span> — A comprehensive collection of biblical studies organized by category, including detailed explorations of people, theology, history, and study tools.</p>
<p><span class="newthought">Theological Studies</span> — Individual studies: <a href="/biblical-angels">Biblical Angels</a>, <a href="/biblical-prophets">Biblical Prophets</a>, <a href="/biblical-covenants">Biblical Covenants</a>, <a href="/biblical-festivals">Biblical Festivals</a>, <a href="/names-of-god">Names of God</a>, <a href="/parables">Parables of Jesus</a>, <a href="/tetragrammaton">The Tetragrammaton</a>, <a href="/the-twelve-apostles">The Twelve Apostles</a>, and <a href="/women-of-the-bible">Women of the Bible</a>.</p>
<p><span class="newthought">Topical Index</span> — A systematic <a href="/topics">concordance of major theological themes</a>, organizing Scripture by subject—Salvation, Prayer, Love, Faith, Forgiveness, the Holy Spirit, and other essential doctrines—each with carefully selected verses and explanatory notes.</p>
<p><span class="newthought">Reading Plans</span> — Structured <a href="/reading-plans">Bible reading schedules</a> for systematic Scripture study, including chronological, thematic, and testament-specific plans to guide sustained engagement with God's Word.</p>
<p><span class="newthought">Concordance and Search</span> — A comprehensive <a href="/search">search facility</a> allowing the reader to trace any word or phrase throughout the entire corpus of Scripture, after the manner of Cruden's Complete Concordance.</p>
<p><span class="newthought">Biblical Geography</span><a href="/biblical-maps">Maps and descriptions</a> of those places mentioned in Holy Writ, from the rivers of Babylon to the shores of Galilee, illuminating the geographical context of sacred history.</p>
<p><span class="newthought">Genealogies</span><a href="/family-tree">The family tree</a> of biblical personages, tracing the line of descent from Adam through the patriarchs to the house of David and ultimately to Jesus Christ, the son of David, the son of Abraham.</p>
<p><span class="newthought">Chronology</span> — A <a href="/biblical-timeline">timeline of biblical events</a>, presenting in ordered sequence the principal occurrences recorded in Scripture, from the creation to the apostolic age.</p>
</section>
{% endblock %}