mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
93b225f91c
Reorder homepage sections to prioritize search functionality:
1. Title ("The Holy Bible")
2. Search/Navigate box (moved up from position 3)
3. Welcome introduction
4. Daily verse
5. Rest of content
This puts the most functional element (search) immediately
available to returning visitors while still providing welcoming
context for new visitors.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
487 lines
22 KiB
HTML
487 lines
22 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}The King James Bible{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>
|
|
.title-page {
|
|
margin: 2.5rem 0;
|
|
}
|
|
|
|
.title-page h1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.title-details {
|
|
font-style: italic;
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
color: #666;
|
|
margin: 0 0 1.5rem 0;
|
|
}
|
|
|
|
/* Make book names bold throughout */
|
|
section a[href^="/book/"] {
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Quick verse lookup - Classical style */
|
|
.verse-lookup {
|
|
max-width: 55%;
|
|
margin: 1.5rem 0;
|
|
padding: 1.5rem 0 1.5rem 1.5rem;
|
|
border-left: 3px solid var(--border-color-darker);
|
|
}
|
|
|
|
.verse-lookup h2 {
|
|
margin-top: 0;
|
|
font-size: 1.2rem;
|
|
font-style: italic;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.lookup-form {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.lookup-input {
|
|
flex: 1;
|
|
padding: 0.75rem 1rem;
|
|
font-size: 1rem;
|
|
border: 1px solid var(--border-color);
|
|
background: var(--bg-color);
|
|
color: var(--text-color);
|
|
font-family: inherit;
|
|
}
|
|
|
|
.lookup-input:focus {
|
|
outline: none;
|
|
border-color: var(--text-color);
|
|
}
|
|
|
|
.lookup-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
background: var(--text-color);
|
|
color: var(--bg-color);
|
|
border: 1px solid var(--text-color);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.lookup-btn:hover {
|
|
background: var(--bg-color);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.lookup-help {
|
|
font-size: 0.9rem;
|
|
color: var(--text-secondary);
|
|
margin-top: 0.5rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Quick Links - Classical List */
|
|
.quick-links {
|
|
max-width: 55%;
|
|
margin: 1rem 0;
|
|
line-height: 2;
|
|
}
|
|
|
|
.quick-link-btn {
|
|
display: inline;
|
|
margin-right: 1.5rem;
|
|
}
|
|
|
|
/* Mobile responsive styles */
|
|
@media (max-width: 760px) {
|
|
.title-page {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.title-page h1 {
|
|
font-size: 2.75rem;
|
|
margin-bottom: 1rem;
|
|
font-weight: 900;
|
|
color: #000;
|
|
}
|
|
|
|
[data-theme="dark"] .title-page h1 {
|
|
color: #fff;
|
|
}
|
|
|
|
.title-details {
|
|
font-size: 1rem;
|
|
margin: 0 0 2rem 0;
|
|
}
|
|
|
|
.verse-lookup {
|
|
max-width: 100%;
|
|
padding: 1.25rem 0 1.25rem 1.25rem;
|
|
margin: 1.5rem 0;
|
|
border-left: 5px solid #999;
|
|
}
|
|
|
|
.verse-lookup h2 {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: #000;
|
|
}
|
|
|
|
[data-theme="dark"] .verse-lookup {
|
|
border-left-color: #666;
|
|
}
|
|
|
|
[data-theme="dark"] .verse-lookup h2 {
|
|
color: #fff;
|
|
}
|
|
|
|
.lookup-form {
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.lookup-input {
|
|
width: 100%;
|
|
font-size: 1.05rem;
|
|
padding: 0.875rem 1rem;
|
|
border: 3px solid #999;
|
|
font-weight: 500;
|
|
color: #000;
|
|
}
|
|
|
|
[data-theme="dark"] .lookup-input {
|
|
border-color: #666;
|
|
color: #fff;
|
|
}
|
|
|
|
.lookup-input:focus {
|
|
border-color: #333;
|
|
outline: none;
|
|
}
|
|
|
|
[data-theme="dark"] .lookup-input:focus {
|
|
border-color: #999;
|
|
}
|
|
|
|
.lookup-btn {
|
|
width: 100%;
|
|
padding: 0.875rem;
|
|
font-size: 1.05rem;
|
|
font-weight: 700;
|
|
min-height: 44px;
|
|
border: 3px solid #111;
|
|
background: #111;
|
|
color: #fff;
|
|
}
|
|
|
|
[data-theme="dark"] .lookup-btn {
|
|
border-color: #ddd;
|
|
background: #ddd;
|
|
color: #111;
|
|
}
|
|
|
|
.lookup-help {
|
|
font-size: 0.9rem;
|
|
line-height: 1.6;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.quick-links {
|
|
max-width: 100%;
|
|
margin: 1rem 0;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.quick-link-btn {
|
|
display: inline-block;
|
|
margin: 0.5rem 0.75rem 0.5rem 0;
|
|
padding: 0.6rem 1.2rem;
|
|
border: 3px solid #999;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
min-height: 44px;
|
|
line-height: 1.6;
|
|
color: #000;
|
|
}
|
|
|
|
[data-theme="dark"] .quick-link-btn {
|
|
border-color: #666;
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
/* Adjust epigraph on mobile with strong contrast */
|
|
.epigraph {
|
|
margin: 2rem 0;
|
|
padding: 1rem;
|
|
border-left: 5px solid #999;
|
|
}
|
|
|
|
[data-theme="dark"] .epigraph {
|
|
border-left-color: #666;
|
|
}
|
|
|
|
.epigraph blockquote {
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
color: #000;
|
|
font-weight: 400;
|
|
}
|
|
|
|
[data-theme="dark"] .epigraph blockquote {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
.epigraph footer {
|
|
margin-top: 0.75rem;
|
|
font-size: 0.95rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.epigraph footer a {
|
|
font-weight: 600;
|
|
border-bottom: 2px solid #999;
|
|
color: #000;
|
|
}
|
|
|
|
[data-theme="dark"] .epigraph footer a {
|
|
border-bottom-color: #666;
|
|
color: #e0e0e0;
|
|
}
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="title-page">
|
|
<h1>The Holy Bible</h1>
|
|
<div class="title-details">
|
|
Authorized King James Version<br/>
|
|
<em>Anno Domini</em> 1611
|
|
</div>
|
|
</div>
|
|
|
|
<div class="verse-lookup">
|
|
<h2>Search or Navigate Scripture</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>
|
|
|
|
<section>
|
|
<p><span class="newthought">Welcome to KJV Study</span>, a digital resource for studying the Authorized Version of the Holy Scriptures. This site provides the complete text of the King James Bible enriched with original language analysis, cross-references, historical context, and theological commentary—instruments designed to help both the careful scholar and the earnest student understand God's Word more deeply.</p>
|
|
|
|
<p>Here you will find not merely the sacred text, but helps for its profitable study:<label for="sn-purpose" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-purpose" class="margin-toggle"/><span class="sidenote">This digital edition presents the 1769 Oxford Standard text, enriched with apparatus drawn from judicious commentators and modern scholarship. Scripture is profitable 'for doctrine, for reproof, for correction, for instruction in righteousness' (2 Timothy 3:16)—yet such profit requires more than cursory reading. Hence the provision of study helps.</span> Hebrew and Greek word analysis, comprehensive cross-references whereby Scripture interprets Scripture, topical indices, reading plans, and theological studies. Our purpose follows that of the original 1611 translators: "that the Scripture may speake like it selfe"—that it may be understood with the depth of comprehension befitting the oracles of the living God.</p>
|
|
</section>
|
|
|
|
<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>The Sacred Scriptures</h2>
|
|
|
|
<p><span class="newthought">The Holy Bible</span> comprises sixty-six books penned by approximately forty authors over fifteen centuries—yet unified by one divine Author. These sacred writings preserve God's progressive self-revelation to humanity: His character, His purposes, and His redemptive plan accomplished through Jesus Christ. The Scriptures consist of two testaments,<label for="sn-testaments" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-testaments" class="margin-toggle"/><span class="sidenote">The Hebrew Scriptures (תנ״ך, <em>TaNaKh</em>) consist of תּוֹרָה (<em>Torah</em>, Law), נְבִיאִים (<em>Nevi'im</em>, Prophets), and כְּתוּבִים (<em>Ketuvim</em>, Writings). The Greek New Testament (καινὴ διαθήκη) records Christ's incarnation, the establishment of His church, and apostolic teaching. Christ Himself testified: 'all things must be fulfilled, which were written in the law of Moses, and in the prophets, and in the psalms, concerning me' (Luke 24:44).</span> the Old and the New, which together form a coherent testimony to the gospel.</p>
|
|
|
|
<p><span class="newthought">The Old Testament</span> contains God's covenant with Israel, from creation through the prophetic age. It includes the Law of Moses (<em>Torah</em>), which establishes God's covenant and moral order; the Historical Books, which narrate Israel's history from conquest to exile and restoration; the Wisdom Literature, which explores the deepest questions of human existence; and the Prophets, who called Israel to faithfulness and foretold the coming Messiah.</p>
|
|
|
|
<p><span class="newthought">The New Testament</span> presents the fulfillment of Old Testament promises in Jesus Christ. The four Gospels provide comprehensive testimony to Christ's life, death, and resurrection from different perspectives. Acts chronicles the early church's establishment and growth. The Epistles expound Christian doctrine and provide pastoral instruction. Revelation unveils the consummation of God's redemptive plan.</p>
|
|
|
|
<p><a href="/books">Browse all sixty-six books</a> to read any chapter or verse.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Study Resources</h2>
|
|
|
|
<p><span class="newthought">Word-by-Word Analysis</span> — Each verse may be examined at the word level, with access to the underlying Hebrew (תּוֹרָה) or Greek (Ἑλληνική) text, transliterations, Strong's concordance numbers, parsing information, and lexical definitions. This allows readers to understand the original languages without prior training.</p>
|
|
|
|
<p><span class="newthought">Cross-References</span> — Comprehensive cross-references connect related passages throughout Scripture, demonstrating how the Bible interprets itself. These references illuminate theological themes, typological connections, and parallel accounts across both testaments.</p>
|
|
|
|
<p><span class="newthought">Topical Studies</span> — In-depth <a href="/resources">theological studies</a> explore major biblical themes, persons, and concepts. Subjects include <a href="/biblical-covenants">the biblical covenants</a>, <a href="/names-of-god">the names of God</a>, <a href="/tetragrammaton">the sacred Tetragrammaton</a>, <a href="/parables">Christ's parables</a>, <a href="/biblical-angels">angelology</a>, <a href="/biblical-prophets">the prophets</a>, and many others.</p>
|
|
|
|
<p><span class="newthought">Topical Index</span> — A systematic <a href="/topics">concordance of theological themes</a> organizes Scripture by subject—Salvation, Prayer, Love, Faith, Forgiveness, the Holy Spirit, and other essential doctrines—with carefully selected verses and explanatory notes for each topic.</p>
|
|
|
|
<p><span class="newthought">Reading Plans</span> — Structured <a href="/reading-plans">Bible reading schedules</a> guide systematic Scripture study through chronological, thematic, and testament-specific approaches, helping establish regular engagement with God's Word.</p>
|
|
|
|
<p><span class="newthought">Concordance & Search</span> — A comprehensive <a href="/concordance">concordance</a> shows every occurrence of any word in Scripture. The <a href="/search">search facility</a> allows tracing words and phrases throughout the entire biblical corpus.</p>
|
|
|
|
<p><span class="newthought">Historical Context</span> — <a href="/biblical-maps">Maps and geographical descriptions</a> illuminate the places of Scripture. A <a href="/biblical-timeline">chronological timeline</a> presents biblical events in historical sequence. <a href="/family-tree">Genealogical charts</a> trace the line from Adam through the patriarchs to David and ultimately to Christ.</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>Quick Access</h2>
|
|
<div class="quick-links">
|
|
<a href="/books" class="quick-link-btn">All Books</a>
|
|
<a href="/reading-plans" class="quick-link-btn">Reading Plans</a>
|
|
<a href="/topics" class="quick-link-btn">Topical Index</a>
|
|
<a href="/resources" class="quick-link-btn">All Resources</a>
|
|
<a href="/family-tree" class="quick-link-btn">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">About the Translation</span> — The Authorized Version, commissioned by King James I in 1604 and completed in 1611,<label for="sn-translation" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-translation" class="margin-toggle"/><span class="sidenote">The translators worked in six companies at Westminster, Oxford, and Cambridge. They consulted previous English translations—particularly Tyndale, whose felicity of phrase permeates the work—while maintaining fidelity to the original tongues. The result became the foundation for English biblical language and theological discourse.</span> represents the work of forty-seven learned divines and scholars working from the <em>Textus Receptus</em> (Greek) and <em>Masoretic Text</em> (Hebrew). This translation has shaped English-speaking Christianity for more than four centuries, achieving a remarkable union of scholarly precision with nobility of expression. This digital edition presents the 1769 Oxford Standard text.</p>
|
|
</section>
|
|
|
|
<div style="margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border-color); text-align: center;">
|
|
<p style="font-size: 0.85rem; color: var(--text-tertiary);">
|
|
This project is open source. <a href="https://github.com/kennethreitz/kjvstudy.org" target="_blank" rel="noopener" style="color: var(--text-tertiary); border-bottom: 1px dotted var(--border-color-dark);">View the source code on GitHub</a>.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|