mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
bc7a2da533
Make homepage intro text clickable for easy navigation to books list. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
259 lines
16 KiB
HTML
259 lines
16 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;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="title-page">
|
|
<h1>The Holy Bible</h1>
|
|
<div class="title-details">
|
|
Containing the Old and New Testaments<br/>
|
|
Translated out of the Original Tongues<br/>
|
|
and with the Former Translations<br/>
|
|
Diligently Compared and Revised<br/>
|
|
by His Majesty's Special Command<br/>
|
|
Appointed to be Read in Churches<br/>
|
|
<em>Anno Domini</em> 1611
|
|
</div>
|
|
</div>
|
|
|
|
<div class="verse-lookup">
|
|
<h2>Jump to Verse</h2>
|
|
<form class="lookup-form" onsubmit="return jumpToVerse(event)">
|
|
<input
|
|
type="text"
|
|
class="lookup-input"
|
|
id="verse-lookup-input"
|
|
placeholder="Enter verse reference (e.g., John 3:16)"
|
|
autocomplete="off"
|
|
/>
|
|
<button type="submit" class="lookup-btn">Go</button>
|
|
</form>
|
|
<div class="lookup-help">Examples: Genesis 1:1, Romans 8:28, Psalm 23, Matthew 5-7</div>
|
|
</div>
|
|
|
|
<script>
|
|
function jumpToVerse(event) {
|
|
event.preventDefault();
|
|
const input = document.getElementById('verse-lookup-input').value.trim();
|
|
|
|
if (!input) {
|
|
return false;
|
|
}
|
|
|
|
// Parse the reference
|
|
// Formats: "Book Chapter:Verse", "Book Chapter", "Book Chapter-Chapter"
|
|
// Examples: "John 3:16", "Psalm 23", "Matthew 5-7"
|
|
|
|
// Try to match: Book Chapter:Verse
|
|
let match = input.match(/^(.+?)\s+(\d+):(\d+)$/i);
|
|
if (match) {
|
|
const book = 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 = match[1].trim();
|
|
const chapter = match[2];
|
|
window.location.href = `/book/${encodeURIComponent(book)}/chapter/${chapter}`;
|
|
return false;
|
|
}
|
|
|
|
// Try to match: Book (go to book)
|
|
match = input.match(/^(.+)$/i);
|
|
if (match) {
|
|
const book = match[1].trim();
|
|
window.location.href = `/book/${encodeURIComponent(book)}`;
|
|
return false;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// Add keyboard shortcut: Press 'g' to focus the lookup input
|
|
document.addEventListener('keydown', function(e) {
|
|
if (e.key === 'g' && !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>
|
|
<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, this translation has shaped not merely literature and law, but the very fabric of spiritual and moral discourse for more than four centuries.</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. Their labor produced a work of such enduring power that its cadences echo still through English prose.</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: marginal notes, cross-references, and such geographical and historical context as may illumine the sacred page.</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>, or Pentateuch—five books traditionally ascribed to Moses, servant of God. These form the foundation upon which all subsequent scripture rests, containing both the primeval history of mankind and the particular covenant established with Israel.</span>
|
|
or Books of Moses, constitute the foundation of divine revelation. Beginning with the creation of the world and the fall of man, proceeding through the patriarchal dispensation, and culminating in the giving of the Law at Sinai—here is recorded the establishment of God's 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>, or Prophets, spoke as the mouthpieces of God to wayward Israel and Judah. Their oracles combine fierce denunciation of sin with tender promises of restoration, and contain numerous Messianic prophecies fulfilled in Christ.</span>
|
|
preserve the oracles of those men whom God raised up to call His people to repentance, to pronounce judgment upon the nations, and to foretell the coming of Messiah. 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">Four distinct accounts of the incarnation, ministry, passion, and resurrection of our Lord Jesus Christ. Matthew presents Christ as the King of the Jews; Mark, as the suffering Servant; Luke, as the perfect Man; John, as the eternal Word made flesh.</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 Word became flesh and dwelt 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 the ascension of Christ, the descent of the Holy Spirit at Pentecost, and the subsequent expansion of the church from Jerusalem to Rome. It demonstrates how the gospel spread "unto the uttermost part of the earth" through the preaching of Peter, Paul, and other apostles.</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 letters of Paul, Peter, John, James, and Jude expound Christian doctrine and provide 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 Apocalypse—from the Greek ἀποκάλυψις, "unveiling"—presents in highly symbolic imagery the ultimate triumph of Christ over all earthly and spiritual powers. It concludes the canon of Scripture with visions of judgment and the restoration of all things.</span>
|
|
concludes the canon with visions of the end times, the final judgment, and the establishment of the new heaven and new earth. This prophetic book, given to John while exiled on Patmos, unveils the ultimate victory of the Lamb and the 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">Theological Studies</span> — Comprehensive explorations of biblical themes: <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="/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 %}
|