mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Add individual book introduction JSON files for all 66 books
- Create books.py loader module with caching for book data - Add JSON files for each book with introduction, themes, key verses, outline, historical context, literary style, Christ in book, and practical application sections - Update API routes to include book metadata and introduction data - Update book.html template to display rich book content - Template falls back to commentary data when book_intro unavailable 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,203 @@
|
||||
"""
|
||||
Book introductions and metadata loader.
|
||||
Loads individual JSON files for each book of the Bible.
|
||||
"""
|
||||
|
||||
import json
|
||||
from pathlib import Path
|
||||
from functools import lru_cache
|
||||
from typing import Optional
|
||||
|
||||
# Path to books data directory
|
||||
_books_dir = Path(__file__).parent / "data" / "books"
|
||||
|
||||
# Mapping of book names to their JSON filenames
|
||||
_BOOK_FILENAME_MAP = {
|
||||
# Old Testament
|
||||
"Genesis": "genesis.json",
|
||||
"Exodus": "exodus.json",
|
||||
"Leviticus": "leviticus.json",
|
||||
"Numbers": "numbers.json",
|
||||
"Deuteronomy": "deuteronomy.json",
|
||||
"Joshua": "joshua.json",
|
||||
"Judges": "judges.json",
|
||||
"Ruth": "ruth.json",
|
||||
"I Samuel": "1_samuel.json",
|
||||
"II Samuel": "2_samuel.json",
|
||||
"I Kings": "1_kings.json",
|
||||
"II Kings": "2_kings.json",
|
||||
"I Chronicles": "1_chronicles.json",
|
||||
"II Chronicles": "2_chronicles.json",
|
||||
"Ezra": "ezra.json",
|
||||
"Nehemiah": "nehemiah.json",
|
||||
"Esther": "esther.json",
|
||||
"Job": "job.json",
|
||||
"Psalms": "psalms.json",
|
||||
"Proverbs": "proverbs.json",
|
||||
"Ecclesiastes": "ecclesiastes.json",
|
||||
"Song of Solomon": "song_of_solomon.json",
|
||||
"Isaiah": "isaiah.json",
|
||||
"Jeremiah": "jeremiah.json",
|
||||
"Lamentations": "lamentations.json",
|
||||
"Ezekiel": "ezekiel.json",
|
||||
"Daniel": "daniel.json",
|
||||
"Hosea": "hosea.json",
|
||||
"Joel": "joel.json",
|
||||
"Amos": "amos.json",
|
||||
"Obadiah": "obadiah.json",
|
||||
"Jonah": "jonah.json",
|
||||
"Micah": "micah.json",
|
||||
"Nahum": "nahum.json",
|
||||
"Habakkuk": "habakkuk.json",
|
||||
"Zephaniah": "zephaniah.json",
|
||||
"Haggai": "haggai.json",
|
||||
"Zechariah": "zechariah.json",
|
||||
"Malachi": "malachi.json",
|
||||
# New Testament
|
||||
"Matthew": "matthew.json",
|
||||
"Mark": "mark.json",
|
||||
"Luke": "luke.json",
|
||||
"John": "john.json",
|
||||
"Acts": "acts.json",
|
||||
"Romans": "romans.json",
|
||||
"I Corinthians": "1_corinthians.json",
|
||||
"II Corinthians": "2_corinthians.json",
|
||||
"Galatians": "galatians.json",
|
||||
"Ephesians": "ephesians.json",
|
||||
"Philippians": "philippians.json",
|
||||
"Colossians": "colossians.json",
|
||||
"I Thessalonians": "1_thessalonians.json",
|
||||
"II Thessalonians": "2_thessalonians.json",
|
||||
"I Timothy": "1_timothy.json",
|
||||
"II Timothy": "2_timothy.json",
|
||||
"Titus": "titus.json",
|
||||
"Philemon": "philemon.json",
|
||||
"Hebrews": "hebrews.json",
|
||||
"James": "james.json",
|
||||
"I Peter": "1_peter.json",
|
||||
"II Peter": "2_peter.json",
|
||||
"I John": "1_john.json",
|
||||
"II John": "2_john.json",
|
||||
"III John": "3_john.json",
|
||||
"Jude": "jude.json",
|
||||
"Revelation": "revelation.json",
|
||||
}
|
||||
|
||||
|
||||
@lru_cache(maxsize=66)
|
||||
def get_book_data(book_name: str) -> Optional[dict]:
|
||||
"""
|
||||
Get the full data for a specific book.
|
||||
|
||||
Args:
|
||||
book_name: The canonical name of the book (e.g., "Genesis", "I Corinthians")
|
||||
|
||||
Returns:
|
||||
Dictionary with book data or None if not found
|
||||
"""
|
||||
filename = _BOOK_FILENAME_MAP.get(book_name)
|
||||
if not filename:
|
||||
return None
|
||||
|
||||
filepath = _books_dir / filename
|
||||
if not filepath.exists():
|
||||
return None
|
||||
|
||||
with open(filepath, "r", encoding="utf-8") as f:
|
||||
return json.load(f)
|
||||
|
||||
|
||||
def get_book_introduction(book_name: str) -> Optional[str]:
|
||||
"""Get just the introduction text for a book."""
|
||||
data = get_book_data(book_name)
|
||||
return data.get("introduction") if data else None
|
||||
|
||||
|
||||
def get_book_themes(book_name: str) -> Optional[list]:
|
||||
"""Get the key themes for a book."""
|
||||
data = get_book_data(book_name)
|
||||
return data.get("key_themes") if data else None
|
||||
|
||||
|
||||
def get_book_key_verses(book_name: str) -> Optional[list]:
|
||||
"""Get the key verses for a book."""
|
||||
data = get_book_data(book_name)
|
||||
return data.get("key_verses") if data else None
|
||||
|
||||
|
||||
def get_book_outline(book_name: str) -> Optional[list]:
|
||||
"""Get the outline for a book."""
|
||||
data = get_book_data(book_name)
|
||||
return data.get("outline") if data else None
|
||||
|
||||
|
||||
def get_book_christ_in_book(book_name: str) -> Optional[str]:
|
||||
"""Get the Christ in this book section."""
|
||||
data = get_book_data(book_name)
|
||||
return data.get("christ_in_book") if data else None
|
||||
|
||||
|
||||
def get_book_metadata(book_name: str) -> Optional[dict]:
|
||||
"""
|
||||
Get metadata for a book (author, date, category, etc.)
|
||||
without the full content.
|
||||
"""
|
||||
data = get_book_data(book_name)
|
||||
if not data:
|
||||
return None
|
||||
|
||||
return {
|
||||
"name": data.get("name"),
|
||||
"abbreviation": data.get("abbreviation"),
|
||||
"testament": data.get("testament"),
|
||||
"position": data.get("position"),
|
||||
"chapters": data.get("chapters"),
|
||||
"category": data.get("category"),
|
||||
"author": data.get("author"),
|
||||
"date_written": data.get("date_written"),
|
||||
}
|
||||
|
||||
|
||||
def get_all_books_metadata() -> list:
|
||||
"""
|
||||
Get metadata for all books in canonical order.
|
||||
"""
|
||||
books = []
|
||||
for book_name in _BOOK_FILENAME_MAP.keys():
|
||||
metadata = get_book_metadata(book_name)
|
||||
if metadata:
|
||||
books.append(metadata)
|
||||
|
||||
# Sort by position
|
||||
books.sort(key=lambda x: x.get("position", 999))
|
||||
return books
|
||||
|
||||
|
||||
def has_book_data(book_name: str) -> bool:
|
||||
"""Check if we have introduction data for a book."""
|
||||
return book_name in _BOOK_FILENAME_MAP
|
||||
|
||||
|
||||
def get_books_by_category() -> dict:
|
||||
"""
|
||||
Get all books organized by category.
|
||||
"""
|
||||
categories = {}
|
||||
for book_name in _BOOK_FILENAME_MAP.keys():
|
||||
data = get_book_data(book_name)
|
||||
if data:
|
||||
category = data.get("category", "Unknown")
|
||||
if category not in categories:
|
||||
categories[category] = []
|
||||
categories[category].append({
|
||||
"name": data.get("name"),
|
||||
"abbreviation": data.get("abbreviation"),
|
||||
"chapters": data.get("chapters"),
|
||||
"position": data.get("position"),
|
||||
})
|
||||
|
||||
# Sort books within each category by position
|
||||
for category in categories:
|
||||
categories[category].sort(key=lambda x: x.get("position", 999))
|
||||
|
||||
return categories
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "I Chronicles",
|
||||
"abbreviation": "1Chr",
|
||||
"testament": "Old Testament",
|
||||
"position": 13,
|
||||
"chapters": 29,
|
||||
"category": "History",
|
||||
"author": "Traditionally Ezra",
|
||||
"date_written": "c. 450-400 BC",
|
||||
"introduction": "First Chronicles retells Israel's history from a post-exilic perspective, emphasizing David and the temple worship he established. Writing for returned exiles who needed to reconnect with their heritage, the Chronicler traces the genealogical line from Adam to the restoration. This book focuses on God's faithfulness to David's line and the importance of proper worship, encouraging a discouraged community that their identity and calling remain intact.",
|
||||
"key_themes": [
|
||||
"Genealogical continuity from Adam to Israel",
|
||||
"David as the ideal king and worship leader",
|
||||
"Preparation for temple worship",
|
||||
"The Levites and proper worship",
|
||||
"Davidic covenant promises",
|
||||
"Seeking God with the whole heart"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Chronicles 16:11", "text": "Seek the LORD and his strength, seek his face continually."},
|
||||
{"reference": "1 Chronicles 17:14", "text": "But I will settle him in mine house and in my kingdom for ever: and his throne shall be established for evermore."},
|
||||
{"reference": "1 Chronicles 28:9", "text": "And thou, Solomon my son, know thou the God of thy father, and serve him with a perfect heart and with a willing mind: for the LORD searcheth all hearts, and understandeth all the imaginations of the thoughts."},
|
||||
{"reference": "1 Chronicles 29:11", "text": "Thine, O LORD, is the greatness, and the power, and the glory, and the victory, and the majesty: for all that is in the heaven and in the earth is thine; thine is the kingdom, O LORD, and thou art exalted as head above all."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Genealogies", "chapters": "1-9", "description": "From Adam through the tribes of Israel to the returnees"},
|
||||
{"section": "Death of Saul", "chapters": "10", "description": "Transition to David's reign"},
|
||||
{"section": "David's Reign", "chapters": "11-21", "description": "Jerusalem captured, ark brought, covenant, military victories"},
|
||||
{"section": "Temple Preparations", "chapters": "22-29", "description": "Materials gathered, Levites organized, Solomon charged"}
|
||||
],
|
||||
"historical_context": "Chronicles was written for Jews who returned from Babylonian exile (after 538 BC). The community faced discouragement—they had no king, a small territory, and a modest temple. The Chronicler reminded them of their glorious heritage and assured them that God's promises to David still stood. The emphasis on proper worship addressed the community's primary identity: they were the worshipping people of God.",
|
||||
"literary_style": "Chronicles parallels Samuel-Kings but with different emphases. It omits negative material about David (Bathsheba, family troubles) while expanding temple-related content. The genealogies, though challenging to modern readers, establish continuity and legitimacy. The book features extensive speeches, prayers, and lists that emphasize theological points. David's final prayer (chapter 29) is liturgical high point.",
|
||||
"christ_in_book": "David as the idealized king points to Christ, David's perfect Son. The Davidic covenant promises find ultimate fulfillment in Christ's eternal kingdom. The temple David longed to build and prepared for points to Christ as God's dwelling with humanity. The genealogies in Matthew 1 and Luke 3 draw from Chronicles, establishing Jesus' rightful claim to David's throne.",
|
||||
"practical_application": "Chronicles teaches that worship is central to God's people's identity and purpose. It shows that even when external circumstances are discouraging, God's promises remain sure. The book emphasizes that God seeks whole-hearted devotion, not mere ritual. David's extensive preparations for what he would not complete himself model faithful service that blesses future generations. The genealogies remind us that we are part of a larger story spanning all of history."
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "I Corinthians",
|
||||
"abbreviation": "1Cor",
|
||||
"testament": "New Testament",
|
||||
"position": 46,
|
||||
"chapters": 16,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 55",
|
||||
"introduction": "First Corinthians addresses a church in crisis. The Corinthian believers were divided by factions, tolerating gross immorality, suing each other in court, abusing the Lord's Supper, misusing spiritual gifts, and even denying the resurrection. Paul's letter is the most extensive New Testament treatment of practical church problems. He calls them to unity in Christ, holiness in conduct, and love as the greatest virtue.",
|
||||
"key_themes": [
|
||||
"Unity in the body of Christ",
|
||||
"True wisdom versus worldly wisdom",
|
||||
"Sexual purity and the body as temple",
|
||||
"Freedom and responsibility",
|
||||
"Spiritual gifts and love",
|
||||
"The resurrection of the body"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Corinthians 1:18", "text": "For the preaching of the cross is to them that perish foolishness; but unto us which are saved it is the power of God."},
|
||||
{"reference": "1 Corinthians 6:19-20", "text": "What? know ye not that your body is the temple of the Holy Ghost which is in you, which ye have of God, and ye are not your own? For ye are bought with a price: therefore glorify God in your body, and in your spirit, which are God's."},
|
||||
{"reference": "1 Corinthians 13:13", "text": "And now abideth faith, hope, charity, these three; but the greatest of these is charity."},
|
||||
{"reference": "1 Corinthians 15:3-4", "text": "For I delivered unto you first of all that which I also received, how that Christ died for our sins according to the scriptures; And that he was buried, and that he rose again the third day according to the scriptures."},
|
||||
{"reference": "1 Corinthians 15:55", "text": "O death, where is thy sting? O grave, where is thy victory?"}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction", "chapters": "1:1-9", "description": "Greetings and thanksgiving"},
|
||||
{"section": "Divisions in the Church", "chapters": "1:10-4:21", "description": "Wisdom of cross versus worldly wisdom"},
|
||||
{"section": "Moral Disorders", "chapters": "5-6", "description": "Immorality, lawsuits, sexual ethics"},
|
||||
{"section": "Marriage Questions", "chapters": "7", "description": "Marriage, celibacy, divorce, singleness"},
|
||||
{"section": "Food Offered to Idols", "chapters": "8-10", "description": "Freedom and stumbling blocks"},
|
||||
{"section": "Worship Disorders", "chapters": "11", "description": "Head coverings, Lord's Supper abuses"},
|
||||
{"section": "Spiritual Gifts", "chapters": "12-14", "description": "Body of Christ, love chapter, orderly worship"},
|
||||
{"section": "The Resurrection", "chapters": "15", "description": "Christ's resurrection, believers' resurrection"},
|
||||
{"section": "Conclusion", "chapters": "16", "description": "Collection, plans, final greetings"}
|
||||
],
|
||||
"historical_context": "Corinth was a prosperous, cosmopolitan port city known for commerce and immorality. Paul founded the church on his second missionary journey (Acts 18) and stayed eighteen months. The city's secular values infiltrated the church. Paul wrote from Ephesus after receiving reports of problems and written questions. This letter is part of extensive correspondence—at least four letters total.",
|
||||
"literary_style": "First Corinthians is pastoral theology—responding to real problems with theological principles. Paul alternates between addressing reported issues and answering their questions ('Now concerning...'). His rhetoric ranges from gentle appeal to sharp rebuke to eloquent poetry (chapter 13). The letter demonstrates how the gospel applies to everyday church life.",
|
||||
"christ_in_book": "Christ is the foundation (3:11), our Passover lamb (5:7), the spiritual Rock who followed Israel (10:4), and the firstfruits of resurrection (15:20-23). The wisdom of God is Christ crucified. The church is His body. The Lord's Supper proclaims His death. His resurrection guarantees ours. When we eat or drink, we do it for Him. He will subject all things and hand the kingdom to the Father.",
|
||||
"practical_application": "First Corinthians addresses problems that churches still face: divisions, celebrity leaders, moral compromise, litigation between believers, questions about marriage and singleness, Christian liberty's limits, worship practices, and spiritual gifts. The love chapter (13) provides the test for all ministry. The resurrection chapter (15) grounds Christian hope. Paul's principle—becoming all things to all people—guides evangelism and cultural engagement."
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "I John",
|
||||
"abbreviation": "1John",
|
||||
"testament": "New Testament",
|
||||
"position": 62,
|
||||
"chapters": 5,
|
||||
"category": "General Epistles",
|
||||
"author": "John the Apostle",
|
||||
"date_written": "c. AD 85-95",
|
||||
"introduction": "First John combats false teaching that denied the incarnation—that Jesus Christ came in the flesh. These proto-Gnostic teachers claimed special knowledge while living immorally. John provides tests of genuine Christianity: believing Jesus is the Christ come in flesh, obeying His commands, and loving fellow believers. The letter assures true believers of their salvation while exposing counterfeits. God is light and love; His children walk accordingly.",
|
||||
"key_themes": [
|
||||
"The incarnation of Jesus Christ",
|
||||
"Fellowship with God",
|
||||
"Walking in the light",
|
||||
"Love as evidence of new life",
|
||||
"Assurance of salvation",
|
||||
"Tests of genuine faith"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 John 1:5", "text": "This then is the message which we have heard of him, and declare unto you, that God is light, and in him is no darkness at all."},
|
||||
{"reference": "1 John 1:9", "text": "If we confess our sins, he is faithful and just to forgive us our sins, and to cleanse us from all unrighteousness."},
|
||||
{"reference": "1 John 3:1", "text": "Behold, what manner of love the Father hath bestowed upon us, that we should be called the sons of God: therefore the world knoweth us not, because it knew him not."},
|
||||
{"reference": "1 John 4:8", "text": "He that loveth not knoweth not God; for God is love."},
|
||||
{"reference": "1 John 4:10", "text": "Herein is love, not that we loved God, but that he loved us, and sent his Son to be the propitiation for our sins."},
|
||||
{"reference": "1 John 5:13", "text": "These things have I written unto you that believe on the name of the Son of God; that ye may know that ye have eternal life, and that ye may believe on the name of the Son of God."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Prologue: The Word of Life", "chapters": "1:1-4", "description": "What we have seen and heard"},
|
||||
{"section": "Walking in the Light", "chapters": "1:5-2:17", "description": "Fellowship with God, sin and forgiveness, love versus worldliness"},
|
||||
{"section": "Warning Against Antichrists", "chapters": "2:18-27", "description": "Denial of Christ, the anointing teaches"},
|
||||
{"section": "Children of God", "chapters": "2:28-3:24", "description": "Righteous living, love in action, confidence before God"},
|
||||
{"section": "Testing the Spirits", "chapters": "4:1-6", "description": "Confessing Christ in flesh"},
|
||||
{"section": "God is Love", "chapters": "4:7-21", "description": "Love defined, perfected, and practiced"},
|
||||
{"section": "Assurance of Eternal Life", "chapters": "5", "description": "Faith's victory, testimony, confidence in prayer"}
|
||||
],
|
||||
"historical_context": "John wrote late in the first century, probably from Ephesus, to churches he had oversight of. False teachers had left the fellowship, denying that Jesus Christ had come in flesh—an early form of Gnosticism that separated the divine Christ from the human Jesus. This heresy severed connection between faith and ethics. John writes to fortify believers against this threat.",
|
||||
"literary_style": "First John lacks typical letter features (no greeting, no named recipients). It's more a sermon or tract. John's style is simple but profound, using basic vocabulary—light, darkness, love, hate, truth, lie—in stark contrasts. The argument spirals rather than progresses linearly, returning to themes of belief, obedience, and love. The intimate tone ('my little children') reflects pastoral concern.",
|
||||
"christ_in_book": "Jesus is the Word of life that was from the beginning, seen, heard, and touched. He is the Son sent by the Father as propitiation for sins. He is the Christ who came in flesh—denying this is antichrist. He is the righteous Advocate if we sin. He is the Son of God who gives eternal life. He came by water and blood, and the Spirit testifies. To have the Son is to have life.",
|
||||
"practical_application": "First John provides assurance tests: Do I believe Jesus is the Christ come in flesh? Do I keep His commands? Do I love fellow believers? True faith transforms conduct. Walking in the light means confession and forgiveness when we fail. Love is not sentiment but sacrificial action modeled on Christ. Fear gives way to confidence as love is perfected. The letter assures genuine believers while exposing false faith."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "I Kings",
|
||||
"abbreviation": "1Kgs",
|
||||
"testament": "Old Testament",
|
||||
"position": 11,
|
||||
"chapters": 22,
|
||||
"category": "History",
|
||||
"author": "Unknown (possibly Jeremiah or a prophetic school)",
|
||||
"date_written": "c. 560-540 BC",
|
||||
"introduction": "First Kings chronicles Israel's glory and division. It opens with Solomon receiving the kingdom and wisdom, building the magnificent temple, and achieving unprecedented prosperity. Yet Solomon's compromises lead to the kingdom's division after his death. The book then traces the parallel histories of Israel and Judah, introducing the great prophet Elijah who confronts the wickedness of Ahab and Jezebel.",
|
||||
"key_themes": [
|
||||
"The splendor and folly of Solomon",
|
||||
"The temple as God's dwelling place",
|
||||
"The divided kingdom",
|
||||
"Covenant faithfulness versus idolatry",
|
||||
"True and false prophets",
|
||||
"Elijah and the contest on Carmel"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Kings 3:9", "text": "Give therefore thy servant an understanding heart to judge thy people, that I may discern between good and bad: for who is able to judge this thy so great a people?"},
|
||||
{"reference": "1 Kings 8:27", "text": "But will God indeed dwell on the earth? behold, the heaven and heaven of heavens cannot contain thee; how much less this house that I have builded?"},
|
||||
{"reference": "1 Kings 18:21", "text": "And Elijah came unto all the people, and said, How long halt ye between two opinions? if the LORD be God, follow him: but if Baal, then follow him. And the people answered him not a word."},
|
||||
{"reference": "1 Kings 19:12", "text": "And after the earthquake a fire; but the LORD was not in the fire: and after the fire a still small voice."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Solomon's Reign", "chapters": "1-11", "description": "Succession, wisdom, temple construction, wealth, and decline"},
|
||||
{"section": "The Kingdom Divided", "chapters": "12-14", "description": "Rehoboam's folly, Jeroboam's idolatry, two kingdoms"},
|
||||
{"section": "Kings of Israel and Judah", "chapters": "15-16", "description": "Dynastic instability in Israel, faithful kings in Judah"},
|
||||
{"section": "Elijah's Ministry", "chapters": "17-22", "description": "The Tishbite confronts Ahab, Carmel, the still small voice, Naboth's vineyard"}
|
||||
],
|
||||
"historical_context": "First Kings covers approximately 120 years (970-850 BC), from Solomon's accession to Ahaziah's reign. The united monarchy reached its zenith under Solomon, then fractured into northern Israel (ten tribes) and southern Judah (two tribes). The book was likely compiled during the Babylonian exile, explaining to the exiles why disaster had befallen them—persistent covenant unfaithfulness despite prophetic warnings.",
|
||||
"literary_style": "First Kings evaluates each monarch by a theological standard: Did he do right or evil in the LORD's sight? Northern kings are uniformly condemned for following 'the sins of Jeroboam,' while Judean kings receive mixed reviews. Extended narratives (Solomon's wisdom, temple dedication, Elijah's ministry) break the regnal pattern. The Elijah narratives are particularly vivid, featuring memorable scenes and powerful dialogue.",
|
||||
"christ_in_book": "Solomon foreshadows Christ as the wise king who builds God's house, though Christ surpasses Solomon (Matthew 12:42). The temple itself points to Christ, the true dwelling of God with humanity. Elijah's ministry anticipates John the Baptist preparing the way for Christ. The faithful remnant theme points to those who will receive the Messiah. The prophetic office itself looks forward to Christ, the ultimate Prophet.",
|
||||
"practical_application": "First Kings warns that great blessing brings great responsibility, and that spiritual compromise leads to disaster. Solomon's example shows that wisdom alone is not enough—obedience is required. The book challenges us to choose decisively whom we will serve and warns against the syncretism that plagued Israel. Elijah's experience after Carmel encourages us that God meets His servants in exhaustion and despair with gentle presence and new commission."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "I Peter",
|
||||
"abbreviation": "1Pet",
|
||||
"testament": "New Testament",
|
||||
"position": 60,
|
||||
"chapters": 5,
|
||||
"category": "General Epistles",
|
||||
"author": "Peter the Apostle",
|
||||
"date_written": "c. AD 62-64",
|
||||
"introduction": "First Peter addresses Christians facing persecution for their faith, probably the early stages of Nero's reign of terror. Peter writes to encourage faithful endurance by grounding believers' identity in God's grace and Christ's example. Suffering is not strange for Christians—Christ suffered for us, leaving an example to follow. The letter is full of hope: a living hope through resurrection, an inheritance that cannot fade, and glory to be revealed.",
|
||||
"key_themes": [
|
||||
"Hope in the midst of suffering",
|
||||
"Living as strangers and exiles",
|
||||
"Christ's example in suffering",
|
||||
"The privilege of being God's people",
|
||||
"Submissive living in hostile settings",
|
||||
"Standing firm in grace"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Peter 1:3-4", "text": "Blessed be the God and Father of our Lord Jesus Christ, which according to his abundant mercy hath begotten us again unto a lively hope by the resurrection of Jesus Christ from the dead, To an inheritance incorruptible, and undefiled, and that fadeth not away, reserved in heaven for you."},
|
||||
{"reference": "1 Peter 2:9", "text": "But ye are a chosen generation, a royal priesthood, an holy nation, a peculiar people; that ye should shew forth the praises of him who hath called you out of darkness into his marvellous light."},
|
||||
{"reference": "1 Peter 2:21", "text": "For even hereunto were ye called: because Christ also suffered for us, leaving us an example, that ye should follow his steps."},
|
||||
{"reference": "1 Peter 3:15", "text": "But sanctify the Lord God in your hearts: and be ready always to give an answer to every man that asketh you a reason of the hope that is in you with meekness and fear."},
|
||||
{"reference": "1 Peter 5:7", "text": "Casting all your care upon him; for he careth for you."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Living Hope and Holy Living", "chapters": "1:1-2:10", "description": "New birth, holiness, spiritual house"},
|
||||
{"section": "Submission in Society", "chapters": "2:11-3:12", "description": "Citizens, servants, wives, husbands"},
|
||||
{"section": "Suffering for Righteousness", "chapters": "3:13-4:19", "description": "Blessed in suffering, living for God"},
|
||||
{"section": "Instructions for Elders and Conclusion", "chapters": "5", "description": "Shepherding, standing firm, final greetings"}
|
||||
],
|
||||
"historical_context": "Peter writes to Christians scattered throughout five Roman provinces in Asia Minor (modern Turkey). They faced social ostracism and possibly official persecution as Christianity became distinguished from Judaism. 'Babylon' (5:13) probably refers to Rome. Silvanus (Silas) helped compose the letter. Peter would be martyred under Nero around AD 64-67.",
|
||||
"literary_style": "First Peter is carefully structured, moving from doctrine to practice. The Greek is polished, possibly reflecting Silvanus's assistance. The letter draws heavily on Old Testament imagery—exodus, living stones, spiritual house, royal priesthood. Household codes address various social relationships. The suffering theme dominates: the word 'suffer' appears sixteen times. Baptismal imagery suggests the letter may incorporate early Christian catechesis.",
|
||||
"christ_in_book": "Christ's sufferings and subsequent glory frame the letter. He was foreknown before creation, revealed in the last times. He is the precious cornerstone, rejected by men but chosen by God. His example of patient suffering guides believers. He bore our sins in His body on the tree. He died for sins once for all, the righteous for the unrighteous. He is now at God's right hand with angels subject to Him.",
|
||||
"practical_application": "First Peter redefines suffering—it is expected for Christians, not strange, and leads to glory. Our identity as God's chosen people sustains us when the world rejects us. We are to live as strangers here, with conduct that silences critics and wins some over. Submission in various relationships reflects Christ's example. We should always be ready to explain our hope graciously. Suffering for doing good is better than suffering for doing evil."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "I Samuel",
|
||||
"abbreviation": "1Sam",
|
||||
"testament": "Old Testament",
|
||||
"position": 9,
|
||||
"chapters": 31,
|
||||
"category": "History",
|
||||
"author": "Samuel, Nathan, and Gad (see 1 Chronicles 29:29)",
|
||||
"date_written": "c. 1050-900 BC",
|
||||
"introduction": "First Samuel bridges the period of the judges and the monarchy. It introduces three pivotal figures: Samuel, the last judge and kingmaker; Saul, the people's choice who became a tragic failure; and David, God's choice who would become Israel's greatest king. The book explores the nature of true leadership, the dangers of pride and jealousy, and God's sovereignty in raising up and tearing down rulers.",
|
||||
"key_themes": [
|
||||
"The transition from judges to monarchy",
|
||||
"God's sovereignty over human kingdoms",
|
||||
"The contrast between outward appearance and the heart",
|
||||
"Obedience versus sacrifice",
|
||||
"The consequences of pride and jealousy",
|
||||
"God's choice versus human choice"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Samuel 2:2", "text": "There is none holy as the LORD: for there is none beside thee: neither is there any rock like our God."},
|
||||
{"reference": "1 Samuel 15:22", "text": "And Samuel said, Hath the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Behold, to obey is better than sacrifice, and to hearken than the fat of rams."},
|
||||
{"reference": "1 Samuel 16:7", "text": "But the LORD said unto Samuel, Look not on his countenance, or on the height of his stature; because I have refused him: for the LORD seeth not as man seeth; for man looketh on the outward appearance, but the LORD looketh on the heart."},
|
||||
{"reference": "1 Samuel 17:47", "text": "And all this assembly shall know that the LORD saveth not with sword and spear: for the battle is the LORD's, and he will give you into our hands."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Samuel: Last of the Judges", "chapters": "1-7", "description": "Hannah's prayer, Samuel's birth and call, the Philistine threat"},
|
||||
{"section": "Saul: First of the Kings", "chapters": "8-15", "description": "Israel demands a king, Saul's rise and failure, rejection"},
|
||||
{"section": "David: King in Waiting", "chapters": "16-31", "description": "David's anointing, Goliath, friendship with Jonathan, flight from Saul"}
|
||||
],
|
||||
"historical_context": "The events span approximately 1100-1010 BC, transitioning from the late judges period to the early monarchy. The Philistines posed Israel's greatest threat, possessing iron weapons technology. Israel's request for a king reflected both legitimate needs and sinful motivations. The book explains how Israel acquired and lost its first king and how God prepared David for the throne through years of testing and waiting.",
|
||||
"literary_style": "First Samuel excels in character portrayal through action and dialogue. The contrasts are masterful: Hannah's faith versus Eli's passivity, Samuel's integrity versus his sons' corruption, Saul's impressive start versus tragic end, David's humble trust versus Saul's paranoid jealousy. The book employs dramatic irony (the reader knows David is anointed king while Saul pursues him). Key episodes like David and Goliath are told with memorable vividness.",
|
||||
"christ_in_book": "David is the primary type of Christ—the shepherd-king, the anointed one (messiah), the man after God's own heart. David's humble beginning, his opposition from the ruling power, his eventual vindication, and his shepherding of God's people all foreshadow Christ. Hannah's song anticipates Mary's Magnificat and speaks of the LORD's anointed. The rejected stone becoming chief cornerstone reflects David's path to kingship.",
|
||||
"practical_application": "First Samuel teaches that God looks at the heart, not outward appearance or credentials. It warns of the danger of demanding our own way rather than waiting for God's timing. Saul's story shows how small compromises lead to great falls, while David demonstrates patient endurance under unjust treatment. The book challenges leaders to servant-hearted humility and followers to trust God's providence even when circumstances seem contrary to His promises."
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "I Thessalonians",
|
||||
"abbreviation": "1Thess",
|
||||
"testament": "New Testament",
|
||||
"position": 52,
|
||||
"chapters": 5,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 50-51",
|
||||
"introduction": "First Thessalonians is likely Paul's earliest letter, written to encourage a young church facing persecution. Paul had been forced to leave Thessalonica prematurely and worried about the believers' faith. Timothy's positive report prompted this letter of thanksgiving, defense of Paul's ministry, and instruction about holy living and Christ's return. Every chapter ends with reference to Jesus' coming—the hope that sustains believers through present trials.",
|
||||
"key_themes": [
|
||||
"Thanksgiving for the Thessalonians' faith",
|
||||
"Paul's defense of his ministry",
|
||||
"Holy living in anticipation of Christ's return",
|
||||
"The fate of believers who die before Christ returns",
|
||||
"The Day of the Lord",
|
||||
"Comfort and encouragement"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Thessalonians 1:9-10", "text": "For they themselves shew of us what manner of entering in we had unto you, and how ye turned to God from idols to serve the living and true God; And to wait for his Son from heaven, whom he raised from the dead, even Jesus, which delivered us from the wrath to come."},
|
||||
{"reference": "1 Thessalonians 4:13-14", "text": "But I would not have you to be ignorant, brethren, concerning them which are asleep, that ye sorrow not, even as others which have no hope. For if we believe that Jesus died and rose again, even so them also which sleep in Jesus will God bring with him."},
|
||||
{"reference": "1 Thessalonians 4:16-17", "text": "For the Lord himself shall descend from heaven with a shout, with the voice of the archangel, and with the trump of God: and the dead in Christ shall rise first: Then we which are alive and remain shall be caught up together with them in the clouds, to meet the Lord in the air: and so shall we ever be with the Lord."},
|
||||
{"reference": "1 Thessalonians 5:16-18", "text": "Rejoice evermore. Pray without ceasing. In every thing give thanks: for this is the will of God in Christ Jesus concerning you."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Thanksgiving and Reflection", "chapters": "1-3", "description": "Faith remembered, ministry defended, Timothy's report"},
|
||||
{"section": "Instruction and Exhortation", "chapters": "4-5", "description": "Holy living, Christ's return, final instructions"}
|
||||
],
|
||||
"historical_context": "Paul founded the Thessalonian church on his second missionary journey (Acts 17), but Jewish opposition forced his departure after only a few weeks. He worried about the young believers facing persecution. Unable to return himself, he sent Timothy to strengthen them. Timothy's encouraging report prompted this letter from Corinth around AD 50-51, making it likely the earliest New Testament document.",
|
||||
"literary_style": "First Thessalonians is warm and pastoral, more personal than systematic. Paul reminisces about his time with them, defends his conduct against accusations, and expresses deep affection ('as a nurse cherisheth her children'). The eschatological sections (4:13-18; 5:1-11) respond to specific questions. The letter ends with a series of rapid-fire exhortations. Each chapter's conclusion mentions Christ's return.",
|
||||
"christ_in_book": "Christ is the one raised from the dead who delivers from coming wrath. He is the Lord who returns from heaven with a shout, accompanied by archangel and trumpet. The dead in Christ rise first; the living are caught up to meet Him. Believers will always be with the Lord. He is the source of holiness and the one who sanctifies completely. Our destiny is salvation through Him, whether we wake or sleep.",
|
||||
"practical_application": "First Thessalonians teaches that Christ's return should motivate holy living, diligent work, and mutual encouragement. Grief for the dead is natural but transformed by hope—we will be reunited forever. The Day of the Lord comes unexpectedly; believers should live as children of light. The final instructions—rejoice always, pray constantly, give thanks in all circumstances—summarize the Christian life. We comfort one another with the truth of Christ's coming."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "I Timothy",
|
||||
"abbreviation": "1Tim",
|
||||
"testament": "New Testament",
|
||||
"position": 54,
|
||||
"chapters": 6,
|
||||
"category": "Pauline Epistles (Pastoral)",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 62-65",
|
||||
"introduction": "First Timothy is the first of the Pastoral Epistles—letters from Paul to his younger colleagues Timothy and Titus about church leadership and organization. Paul left Timothy in Ephesus to confront false teaching and establish proper order. The letter provides qualifications for church leaders, instructions for various groups, and guidance on combating error. It is a manual for church health in the absence of apostolic presence.",
|
||||
"key_themes": [
|
||||
"Combating false teaching",
|
||||
"Qualifications for church leaders",
|
||||
"Proper conduct in God's household",
|
||||
"The importance of sound doctrine",
|
||||
"Godliness and contentment",
|
||||
"Guarding the deposit of faith"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "1 Timothy 1:15", "text": "This is a faithful saying, and worthy of all acceptation, that Christ Jesus came into the world to save sinners; of whom I am chief."},
|
||||
{"reference": "1 Timothy 2:5-6", "text": "For there is one God, and one mediator between God and men, the man Christ Jesus; Who gave himself a ransom for all, to be testified in due time."},
|
||||
{"reference": "1 Timothy 3:15", "text": "But if I tarry long, that thou mayest know how thou oughtest to behave thyself in the house of God, which is the church of the living God, the pillar and ground of the truth."},
|
||||
{"reference": "1 Timothy 4:12", "text": "Let no man despise thy youth; but be thou an example of the believers, in word, in conversation, in charity, in spirit, in faith, in purity."},
|
||||
{"reference": "1 Timothy 6:10", "text": "For the love of money is the root of all evil: which while some coveted after, they have erred from the faith, and pierced themselves through with many sorrows."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction and False Teaching", "chapters": "1", "description": "Greetings, charge to Timothy, Paul's testimony"},
|
||||
{"section": "Worship and Leadership", "chapters": "2-3", "description": "Prayer, women, overseers, deacons"},
|
||||
{"section": "False Teaching and Timothy's Ministry", "chapters": "4", "description": "Later apostasy, Timothy's example"},
|
||||
{"section": "Various Groups", "chapters": "5-6:2", "description": "Widows, elders, slaves"},
|
||||
{"section": "Final Charges", "chapters": "6:3-21", "description": "False teachers, contentment, Timothy's charge"}
|
||||
],
|
||||
"historical_context": "After his first Roman imprisonment (Acts 28), Paul apparently continued ministry, including leaving Timothy in Ephesus. The Ephesian church faced false teachers promoting myths, genealogies, and ascetic practices. Without established church structures, Timothy needed guidance on leadership selection and organizational matters. The letter addresses a specific church situation but has wider application.",
|
||||
"literary_style": "The Pastoral Epistles have a distinctive vocabulary and style compared to Paul's earlier letters, reflecting different circumstances and topics. First Timothy alternates between personal charge to Timothy and instructions for the church. 'Faithful sayings' appear as doctrinal summaries. The letter is practical and organizational rather than deeply theological, though grounded in gospel truth.",
|
||||
"christ_in_book": "Christ Jesus came into the world to save sinners—Paul's testimony. He is the one mediator between God and men, who gave Himself as ransom for all. He appeared in the flesh, was vindicated by the Spirit, seen by angels, preached among nations, believed in the world, taken up in glory. He is the blessed and only Sovereign, King of kings, Lord of lords, dwelling in unapproachable light.",
|
||||
"practical_application": "First Timothy provides timeless wisdom for church leadership and organization. Elders and deacons must meet character qualifications, not just competency. The church is God's household where conduct matters. Young leaders should earn respect through example, not demand it through position. Contentment with godliness is great gain; the love of money leads astray. Timothy must guard the deposit entrusted to him—the pattern of sound words."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "II Chronicles",
|
||||
"abbreviation": "2Chr",
|
||||
"testament": "Old Testament",
|
||||
"position": 14,
|
||||
"chapters": 36,
|
||||
"category": "History",
|
||||
"author": "Traditionally Ezra",
|
||||
"date_written": "c. 450-400 BC",
|
||||
"introduction": "Second Chronicles covers the same period as First and Second Kings but focuses exclusively on Judah and the Davidic line. The temple dominates the narrative—Solomon builds it, faithful kings restore it, and unfaithful kings neglect it. The book traces worship's central place in Judah's life and ends with Cyrus's decree allowing return from exile, connecting destruction to restoration and encouraging the post-exilic community.",
|
||||
"key_themes": [
|
||||
"The temple and proper worship",
|
||||
"Judah's kings and their faithfulness",
|
||||
"Seeking God brings blessing; forsaking Him brings disaster",
|
||||
"Revival and reformation",
|
||||
"The pattern of humility, prayer, and restoration",
|
||||
"Hope beyond judgment"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Chronicles 7:14", "text": "If my people, which are called by my name, shall humble themselves, and pray, and seek my face, and turn from their wicked ways; then will I hear from heaven, and will forgive their sin, and will heal their land."},
|
||||
{"reference": "2 Chronicles 16:9", "text": "For the eyes of the LORD run to and fro throughout the whole earth, to shew himself strong in the behalf of them whose heart is perfect toward him."},
|
||||
{"reference": "2 Chronicles 20:12", "text": "O our God, wilt thou not judge them? for we have no might against this great company that cometh against us; neither know we what to do: but our eyes are upon thee."},
|
||||
{"reference": "2 Chronicles 36:22-23", "text": "Now in the first year of Cyrus king of Persia... The LORD God of heaven hath given me all the kingdoms of the earth; and he hath charged me to build him an house in Jerusalem, which is in Judah. Who is there among you of all his people? The LORD his God be with him, and let him go up."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Solomon's Reign", "chapters": "1-9", "description": "Wisdom received, temple built and dedicated, prosperity"},
|
||||
{"section": "Judah's Kings: Rehoboam to Ahaz", "chapters": "10-28", "description": "Division, cycles of faithfulness and apostasy"},
|
||||
{"section": "Hezekiah's Reforms", "chapters": "29-32", "description": "Temple cleansed, Passover restored, Assyrian threat"},
|
||||
{"section": "Final Kings and Exile", "chapters": "33-36", "description": "Manasseh, Josiah's reforms, Babylon's conquest, Cyrus's decree"}
|
||||
],
|
||||
"historical_context": "Second Chronicles covers approximately 970-538 BC, from Solomon to Cyrus's decree. Unlike Kings, it ignores the northern kingdom except where it intersects with Judah. Written for post-exilic Jews, it encourages them by showing that God responded to repentance with restoration throughout Judah's history. The closing verses connect directly to Ezra, showing that history continues despite the exile.",
|
||||
"literary_style": "The Chronicler frequently adds theological commentary to explain why things happened. The formula 'because they forsook/sought the LORD' appears repeatedly. Revival accounts receive extensive treatment. Speeches and prayers are prominent, often addressing the post-exilic audience's concerns. The book's placement at the end of the Hebrew Bible (different from English order) means it ends Scripture with hope—'let him go up!'",
|
||||
"christ_in_book": "Solomon's temple, where God's glory dwelt, anticipates Christ in whom 'dwelleth all the fulness of the Godhead bodily' (Colossians 2:9). The pattern of judgment and restoration points to humanity's need for a Savior. The faithful kings foreshadow Christ's perfect reign. The book's ending—release from captivity and commission to rebuild—anticipates the gospel's message of liberation and new life.",
|
||||
"practical_application": "Second Chronicles offers the beloved promise of 2 Chronicles 7:14—humility, prayer, and repentance lead to healing. It teaches that seeking God with the whole heart is the key to blessing and that half-hearted commitment leads to failure. The book shows that it's never too late to turn back to God (even Manasseh was restored) but also that accumulated sin has consequences. Its ending encourages us that God always provides a way forward."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "II Corinthians",
|
||||
"abbreviation": "2Cor",
|
||||
"testament": "New Testament",
|
||||
"position": 47,
|
||||
"chapters": 13,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 56",
|
||||
"introduction": "Second Corinthians is Paul's most personal letter, revealing his heart like no other. After a painful visit and a severe letter, Paul writes with relief that the church has largely responded well. He defends his ministry against false apostles, explains the glory of the new covenant, and describes the paradox of power through weakness. The letter teaches that authentic ministry flows from suffering, that God's grace is sufficient, and that strength is perfected in weakness.",
|
||||
"key_themes": [
|
||||
"Authentic ministry and apostolic authority",
|
||||
"Comfort in suffering",
|
||||
"The new covenant's glory",
|
||||
"Treasure in earthen vessels",
|
||||
"The ministry of reconciliation",
|
||||
"Power perfected in weakness"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Corinthians 1:3-4", "text": "Blessed be God, even the Father of our Lord Jesus Christ, the Father of mercies, and the God of all comfort; Who comforteth us in all our tribulation, that we may be able to comfort them which are in any trouble, by the comfort wherewith we ourselves are comforted of God."},
|
||||
{"reference": "2 Corinthians 4:7", "text": "But we have this treasure in earthen vessels, that the excellency of the power may be of God, and not of us."},
|
||||
{"reference": "2 Corinthians 5:17", "text": "Therefore if any man be in Christ, he is a new creature: old things are passed away; behold, all things are become new."},
|
||||
{"reference": "2 Corinthians 5:21", "text": "For he hath made him to be sin for us, who knew no sin; that we might be made the righteousness of God in him."},
|
||||
{"reference": "2 Corinthians 12:9", "text": "And he said unto me, My grace is sufficient for thee: for my strength is made perfect in weakness. Most gladly therefore will I rather glory in my infirmities, that the power of Christ may rest upon me."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Paul's Ministry Defended", "chapters": "1-7", "description": "Comfort, change of plans, new covenant glory, reconciliation"},
|
||||
{"section": "The Collection for Jerusalem", "chapters": "8-9", "description": "Generosity, grace of giving, cheerful giver"},
|
||||
{"section": "Paul's Apostolic Authority", "chapters": "10-13", "description": "Defense against opponents, boasting in weakness, final warnings"}
|
||||
],
|
||||
"historical_context": "After First Corinthians, the situation worsened. Paul made a painful visit (2:1), wrote a severe letter (now lost, 2:4), and sent Titus to assess the situation. Titus brought good news of their repentance, prompting this thankful letter. However, false apostles had infiltrated the church, attacking Paul's credentials and ministry. The letter addresses both the reconciled majority and the rebellious minority.",
|
||||
"literary_style": "Second Corinthians shifts tone dramatically—from tender consolation to stern warning, from transparent vulnerability to passionate self-defense. Paul's grammar is sometimes broken by emotion. The autobiographical sections reveal his hardships, anxieties, and spiritual experiences. The 'fool's speech' (11-12) is ironic boasting that subverts his opponents' criteria. The paradoxes (power in weakness, rich through poverty) mark Paul's rhetoric.",
|
||||
"christ_in_book": "Christ is the image of God, the Lord of glory, the one who though rich became poor, the one who had no sin but was made sin for us. He is the triumphant Lord who leads His people in procession. He is the glory we reflect with unveiled faces. He is the one whose power is made perfect in weakness. The letter reveals how union with Christ shapes ministry—dying daily that life may flow to others.",
|
||||
"practical_application": "Second Corinthians teaches that authentic ministry involves suffering, not just success. God comforts us so we can comfort others. Our weakness displays God's power better than our strength. The call to be reconciled to God remains urgent. Generous giving reflects God's indescribable gift. The letter warns against false teachers who preach 'another Jesus.' Paul's vulnerability encourages leaders to be transparent about struggles while maintaining confidence in God's sufficient grace."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "II John",
|
||||
"abbreviation": "2John",
|
||||
"testament": "New Testament",
|
||||
"position": 63,
|
||||
"chapters": 1,
|
||||
"category": "General Epistles",
|
||||
"author": "John the Apostle",
|
||||
"date_written": "c. AD 85-95",
|
||||
"introduction": "Second John is the shortest New Testament book by verse count. Written to a 'chosen lady and her children' (possibly a local church), it summarizes First John's concerns: walking in truth and love while rejecting false teachers who deny Christ came in flesh. The letter warns against extending hospitality to such deceivers, lest believers become partakers in their evil work. Truth and love must be held together.",
|
||||
"key_themes": [
|
||||
"Walking in truth and love",
|
||||
"The commandment to love one another",
|
||||
"Warning against deceivers",
|
||||
"Confessing Christ come in flesh",
|
||||
"Refusing hospitality to false teachers",
|
||||
"Guarding the truth"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 John 1:5-6", "text": "And now I beseech thee, lady, not as though I wrote a new commandment unto thee, but that which we had from the beginning, that we love one another. And this is love, that we walk after his commandments. This is the commandment, That, as ye have heard from the beginning, ye should walk in it."},
|
||||
{"reference": "2 John 1:7", "text": "For many deceivers are entered into the world, who confess not that Jesus Christ is come in the flesh. This is a deceiver and an antichrist."},
|
||||
{"reference": "2 John 1:9", "text": "Whosoever transgresseth, and abideth not in the doctrine of Christ, hath not God. He that abideth in the doctrine of Christ, he hath both the Father and the Son."},
|
||||
{"reference": "2 John 1:10-11", "text": "If there come any unto you, and bring not this doctrine, receive him not into your house, neither bid him God speed: For he that biddeth him God speed is partaker of his evil deeds."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Greeting", "chapters": "1:1-3", "description": "To the chosen lady, truth and love"},
|
||||
{"section": "Walking in Truth and Love", "chapters": "1:4-6", "description": "Joy in faithful children, the love commandment"},
|
||||
{"section": "Warning Against Deceivers", "chapters": "1:7-11", "description": "Antichrists who deny Christ, do not receive them"},
|
||||
{"section": "Conclusion", "chapters": "1:12-13", "description": "Hope to visit, greetings from sister church"}
|
||||
],
|
||||
"historical_context": "Like First John, this letter addresses the threat of false teachers who denied Christ's incarnation. Traveling teachers relied on hospitality from local believers; extending such hospitality was extending endorsement. John warns that welcoming false teachers into one's home makes one complicit in their destructive work. The 'elect lady' may be a personification of a local church, with 'children' as its members.",
|
||||
"literary_style": "Second John follows standard letter format, unlike First John. It is remarkably compact, covering its themes in thirteen verses. The elder (John's self-designation) writes with authority and affection. The letter connects truth, love, and obedience as inseparable: walking in truth means obeying the love commandment. The closing expresses preference for face-to-face conversation over writing.",
|
||||
"christ_in_book": "Christ is the one who came in flesh—the non-negotiable confession. Those who deny this have neither the Father nor the Son. Those who abide in Christ's teaching have both Father and Son. The commandment to love one another comes from Christ. Grace, mercy, and peace come from God the Father and from Jesus Christ, the Father's Son.",
|
||||
"practical_application": "Second John teaches that truth and love must be held together. Love without truth becomes sentimental acceptance of error; truth without love becomes harsh and divisive. The letter provides practical guidance: do not support those who deny Christ's incarnation. Hospitality has limits when core doctrine is at stake. Discernment is necessary—not everyone who claims to speak for Christ does. Guarding truth is an act of love for the church."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "II Kings",
|
||||
"abbreviation": "2Kgs",
|
||||
"testament": "Old Testament",
|
||||
"position": 12,
|
||||
"chapters": 25,
|
||||
"category": "History",
|
||||
"author": "Unknown (possibly Jeremiah or a prophetic school)",
|
||||
"date_written": "c. 560-540 BC",
|
||||
"introduction": "Second Kings continues the parallel history of Israel and Judah to their tragic ends. The northern kingdom falls to Assyria in 722 BC, while Judah survives another 136 years before Babylon destroys Jerusalem and the temple in 586 BC. Despite moments of revival under kings like Hezekiah and Josiah, the overall trajectory is downward. The book explains that exile came as God's judgment for persistent covenant violation.",
|
||||
"key_themes": [
|
||||
"The prophetic ministry of Elisha",
|
||||
"The inevitable judgment for covenant unfaithfulness",
|
||||
"The fall of Israel and Judah",
|
||||
"Momentary revivals and continuing decline",
|
||||
"God's patience and ultimate justice",
|
||||
"The end of the Davidic kingdom in Jerusalem"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Kings 2:9", "text": "And it came to pass, when they were gone over, that Elijah said unto Elisha, Ask what I shall do for thee, before I be taken away from thee. And Elisha said, I pray thee, let a double portion of thy spirit be upon me."},
|
||||
{"reference": "2 Kings 17:7", "text": "For so it was, that the children of Israel had sinned against the LORD their God, which had brought them up out of the land of Egypt."},
|
||||
{"reference": "2 Kings 22:13", "text": "Go ye, inquire of the LORD for me, and for the people, and for all Judah, concerning the words of this book that is found: for great is the wrath of the LORD that is kindled against us, because our fathers have not hearkened unto the words of this book."},
|
||||
{"reference": "2 Kings 25:21", "text": "And the king of Babylon smote them, and slew them at Riblah in the land of Hamath. So Judah was carried away out of their land."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Elisha's Ministry", "chapters": "1-8", "description": "Elijah's departure, Elisha's miracles, Naaman's healing"},
|
||||
{"section": "Israel's Final Years", "chapters": "9-17", "description": "Jehu's purge, declining kings, Assyrian conquest"},
|
||||
{"section": "Judah Alone", "chapters": "18-21", "description": "Hezekiah's faithfulness and crisis, Manasseh's evil"},
|
||||
{"section": "Josiah's Revival and Judah's End", "chapters": "22-25", "description": "Book found, reforms, Babylon's conquest, exile"}
|
||||
],
|
||||
"historical_context": "Second Kings covers about 280 years (850-570 BC), from Elisha's ministry through the Babylonian exile. The major imperial powers—Assyria and Babylon—dominated the ancient Near East. Assyria deported Israel's population (722 BC), ending the northern kingdom. Babylon later destroyed Jerusalem (586 BC), deporting Judah's population. The book was completed in exile, possibly by Jeremiah, explaining the catastrophe theologically.",
|
||||
"literary_style": "Like First Kings, the book evaluates monarchs theologically. The Elisha narratives are rich with miracle stories demonstrating God's power and compassion. Chapter 17 provides theological commentary on Israel's fall. The Hezekiah and Josiah sections are more expansive, highlighting these faithful kings. The book ends abruptly with Jerusalem's destruction and a note of hope—Jehoiachin released from prison—suggesting future restoration.",
|
||||
"christ_in_book": "Elisha's miracles anticipate Christ's ministry: multiplying food, healing the sick, raising the dead, cleansing lepers. Naaman's cleansing points to salvation by grace through faith, available to Gentiles. The faithful remnant who survive judgment foreshadow those who receive Christ. The exile itself becomes a type of humanity's separation from God, awaiting the greater restoration Christ brings.",
|
||||
"practical_application": "Second Kings solemnly warns that God's patience has limits and that persistent rebellion brings judgment. It shows that revival, however genuine, cannot undo generations of accumulated sin. The book challenges us to respond to God's Word when we encounter it, as Josiah did. It reminds us that nations rise and fall according to God's purposes and that faithfulness matters even when it cannot prevent disaster. The exile points to hope beyond judgment."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "II Peter",
|
||||
"abbreviation": "2Pet",
|
||||
"testament": "New Testament",
|
||||
"position": 61,
|
||||
"chapters": 3,
|
||||
"category": "General Epistles",
|
||||
"author": "Peter the Apostle",
|
||||
"date_written": "c. AD 64-67",
|
||||
"introduction": "Second Peter is Peter's final letter, written as he faced imminent death. While First Peter addressed external persecution, this letter confronts internal threats: false teachers who deny the Lord and mock His return. Peter reminds readers of apostolic testimony, warns against destructive heresies, and reaffirms that the Lord will return—His apparent delay is patience for repentance. The letter calls for growing in grace and knowledge.",
|
||||
"key_themes": [
|
||||
"Growing in grace and knowledge",
|
||||
"True versus false knowledge",
|
||||
"Warning against false teachers",
|
||||
"The certainty of Christ's return",
|
||||
"Divine patience and the Day of the Lord",
|
||||
"Scripture's authority and interpretation"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Peter 1:3-4", "text": "According as his divine power hath given unto us all things that pertain unto life and godliness, through the knowledge of him that hath called us to glory and virtue: Whereby are given unto us exceeding great and precious promises: that by these ye might be partakers of the divine nature, having escaped the corruption that is in the world through lust."},
|
||||
{"reference": "2 Peter 1:20-21", "text": "Knowing this first, that no prophecy of the scripture is of any private interpretation. For the prophecy came not in old time by the will of man: but holy men of God spake as they were moved by the Holy Ghost."},
|
||||
{"reference": "2 Peter 3:8-9", "text": "But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day. The Lord is not slack concerning his promise, as some men count slackness; but is longsuffering to us-ward, not willing that any should perish, but that all should come to repentance."},
|
||||
{"reference": "2 Peter 3:18", "text": "But grow in grace, and in the knowledge of our Lord and Saviour Jesus Christ. To him be glory both now and for ever. Amen."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Growing in Godliness", "chapters": "1", "description": "Divine promises, Christian virtues, Peter's testimony"},
|
||||
{"section": "Warning Against False Teachers", "chapters": "2", "description": "Their character, judgment, and danger"},
|
||||
{"section": "The Day of the Lord", "chapters": "3", "description": "Scoffers answered, destruction and new creation"}
|
||||
],
|
||||
"historical_context": "Peter writes knowing his death is near (1:14). False teachers had infiltrated the church, combining immoral living with denial of future judgment. They mocked Christ's promised return: 'Where is the promise of His coming?' Peter appeals to eyewitness apostolic testimony (the Transfiguration) and prophetic Scripture. The letter shows awareness of Paul's writings, acknowledging their authority while noting they are sometimes misused.",
|
||||
"literary_style": "Second Peter has the most elaborate Greek style in the New Testament, suggesting careful composition for this final testament. Chapter 2 shares extensive material with Jude. Peter builds his argument: chapter 1 establishes true knowledge; chapter 2 exposes false teachers; chapter 3 addresses the return. The letter moves from the personal ('I know my death is near') to the cosmic ('the day of the Lord').",
|
||||
"christ_in_book": "Jesus is Savior and Lord whose divine power provides everything for life and godliness. The Transfiguration vindicated His glory; Scripture prophesied His coming. False teachers deny 'the Lord who bought them.' The Day of the Lord will bring judgment and the new heavens and earth where righteousness dwells. The letter opens and closes with 'the knowledge of our Lord and Savior Jesus Christ.'",
|
||||
"practical_application": "Second Peter calls for diligence in spiritual growth—adding virtue, knowledge, self-control, steadfastness, godliness, brotherly affection, and love. It warns that false teachers are identifiable by their conduct, not just doctrine. The apparent delay of Christ's return is divine patience, not failure. Each day is opportunity for repentance. We should live holy lives, hastening the Day of God, looking for new heavens and earth. Growth in grace and knowledge is the proper response."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "II Samuel",
|
||||
"abbreviation": "2Sam",
|
||||
"testament": "Old Testament",
|
||||
"position": 10,
|
||||
"chapters": 24,
|
||||
"category": "History",
|
||||
"author": "Nathan, Gad, and others (see 1 Chronicles 29:29)",
|
||||
"date_written": "c. 1000-900 BC",
|
||||
"introduction": "Second Samuel records David's reign over Israel—his triumphs and tragedies. It begins with David's lament over Saul and Jonathan and ends with him purchasing the future temple site. Between these bookends lie David's greatest achievements and his greatest sin. The book establishes the Davidic covenant, God's promise of an eternal throne that finds its ultimate fulfillment in Jesus Christ.",
|
||||
"key_themes": [
|
||||
"The establishment of David's kingdom",
|
||||
"The Davidic covenant and eternal throne",
|
||||
"Sin's devastating consequences, even for the forgiven",
|
||||
"God's grace in discipline and restoration",
|
||||
"Leadership's privileges and responsibilities",
|
||||
"The faithfulness of God to His promises"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Samuel 7:12-13", "text": "And when thy days be fulfilled, and thou shalt sleep with thy fathers, I will set up thy seed after thee, which shall proceed out of thy bowels, and I will establish his kingdom. He shall build an house for my name, and I will stablish the throne of his kingdom for ever."},
|
||||
{"reference": "2 Samuel 7:16", "text": "And thine house and thy kingdom shall be established for ever before thee: thy throne shall be established for ever."},
|
||||
{"reference": "2 Samuel 12:13", "text": "And David said unto Nathan, I have sinned against the LORD. And Nathan said unto David, The LORD also hath put away thy sin; thou shalt not die."},
|
||||
{"reference": "2 Samuel 22:2-3", "text": "And he said, The LORD is my rock, and my fortress, and my deliverer; The God of my rock; in him will I trust: he is my shield, and the horn of my salvation, my high tower, and my refuge, my saviour; thou savest me from violence."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "David's Rise", "chapters": "1-10", "description": "King over Judah, then all Israel, Jerusalem captured, covenant established, military victories"},
|
||||
{"section": "David's Fall", "chapters": "11-12", "description": "Bathsheba, Uriah's murder, Nathan's confrontation"},
|
||||
{"section": "David's Troubles", "chapters": "13-20", "description": "Amnon and Tamar, Absalom's rebellion and death, Sheba's revolt"},
|
||||
{"section": "David's Final Years", "chapters": "21-24", "description": "Famine, heroes, psalms, census plague, temple site purchased"}
|
||||
],
|
||||
"historical_context": "David reigned approximately 1010-970 BC. He united the twelve tribes, conquered Jerusalem as his capital, extended Israel's borders to their greatest extent, and prepared for the temple. This was Israel's golden age. Yet David's sin with Bathsheba introduced chaos into his family and kingdom—fulfilling Nathan's prophecy that 'the sword shall never depart from thine house.' The book honestly portrays the greatest king's greatest failures.",
|
||||
"literary_style": "Second Samuel is masterfully constructed narrative. The book's center—David's sin with Bathsheba—creates a dramatic before and after. David's victories give way to family tragedies that mirror his own sins (Amnon's lust, Absalom's murder and rebellion). Nathan's parable and David's unwitting self-condemnation demonstrate sophisticated literary art. The final chapters form an appendix with poetic material (David's song and last words) framed by narrative accounts.",
|
||||
"christ_in_book": "The Davidic covenant (chapter 7) is the theological heart of Scripture's messianic expectation. God's promise of an eternal throne, an eternal kingdom, and an eternal dynasty finds its fulfillment only in Christ, David's greater Son. Jesus is repeatedly called 'Son of David.' David's role as shepherd-king, his suffering before glory, his compassion for enemies, and his desire to build God's house all anticipate Christ. Even David's sins point to humanity's need for a sinless King.",
|
||||
"practical_application": "Second Samuel teaches that even great saints can fall greatly, and that sin—though forgiven—carries lasting consequences. It shows that leadership brings both opportunity and accountability. David's response to Nathan models genuine repentance (see Psalm 51). The book demonstrates that God's purposes prevail despite human failure and that His grace can restore broken lives. It warns against the pride that precedes a fall and the passivity that allows sin to compound."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "II Thessalonians",
|
||||
"abbreviation": "2Thess",
|
||||
"testament": "New Testament",
|
||||
"position": 53,
|
||||
"chapters": 3,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 51-52",
|
||||
"introduction": "Second Thessalonians follows up on the first letter, addressing two problems. First, persecution had intensified, requiring further encouragement. Second, some believed the Day of the Lord had already come, leading to panic and disorderly conduct—some even quit working. Paul clarifies that certain events must precede Christ's return and commands believers to live responsibly while waiting. Eschatological hope should inspire diligence, not idleness.",
|
||||
"key_themes": [
|
||||
"Encouragement under persecution",
|
||||
"Events preceding the Day of the Lord",
|
||||
"The man of lawlessness",
|
||||
"The need for diligent work",
|
||||
"Standing firm in tradition",
|
||||
"God's justice in judgment"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Thessalonians 1:7-8", "text": "And to you who are troubled rest with us, when the Lord Jesus shall be revealed from heaven with his mighty angels, In flaming fire taking vengeance on them that know not God, and that obey not the gospel of our Lord Jesus Christ."},
|
||||
{"reference": "2 Thessalonians 2:3-4", "text": "Let no man deceive you by any means: for that day shall not come, except there come a falling away first, and that man of sin be revealed, the son of perdition; Who opposeth and exalteth himself above all that is called God, or that is worshipped; so that he as God sitteth in the temple of God, shewing himself that he is God."},
|
||||
{"reference": "2 Thessalonians 2:15", "text": "Therefore, brethren, stand fast, and hold the traditions which ye have been taught, whether by word, or our epistle."},
|
||||
{"reference": "2 Thessalonians 3:10", "text": "For even when we were with you, this we commanded you, that if any would not work, neither should he eat."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Thanksgiving and Encouragement", "chapters": "1", "description": "Perseverance praised, judgment promised"},
|
||||
{"section": "The Day of the Lord Clarified", "chapters": "2", "description": "Events preceding, man of lawlessness, stand firm"},
|
||||
{"section": "Exhortation to Orderly Living", "chapters": "3", "description": "Prayer request, work command, conclusion"}
|
||||
],
|
||||
"historical_context": "Written shortly after First Thessalonians, this letter addresses ongoing and new problems. The persecution had not abated. More troubling, some claim (possibly through a forged letter, 2:2) that the Day of the Lord had arrived. This caused alarm and apparently led some to stop working. Paul corrects the eschatological confusion and commands disciplined, productive living while awaiting Christ's return.",
|
||||
"literary_style": "Second Thessalonians is more formal than the first letter. The apocalyptic section (2:1-12) introduces mysterious figures—the man of lawlessness, the restrainer—that have puzzled interpreters. Paul's tone becomes firm when addressing the idle: 'If any would not work, neither should he eat.' The letter concludes with Paul's authenticating signature, suggesting concern about forgeries.",
|
||||
"christ_in_book": "Jesus will be revealed from heaven with mighty angels in flaming fire, bringing justice—relief for the persecuted, punishment for persecutors. He will destroy the lawless one with the breath of His mouth. The Lord is faithful to establish and guard believers. Believers wait for Him while standing firm in what they have been taught. His grace and eternal comfort strengthen hearts for good work.",
|
||||
"practical_application": "Second Thessalonians balances eschatological expectation with present responsibility. Christ's return is certain but not imminent in the sense of 'any moment without preceding signs.' Believers should not be deceived or shaken. Standing firm means holding to apostolic teaching. Idleness is unacceptable—work is dignified and commanded. Church discipline may be necessary for the persistently disorderly. We work faithfully while waiting eagerly."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "II Timothy",
|
||||
"abbreviation": "2Tim",
|
||||
"testament": "New Testament",
|
||||
"position": 55,
|
||||
"chapters": 4,
|
||||
"category": "Pauline Epistles (Pastoral)",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 66-67",
|
||||
"introduction": "Second Timothy is Paul's final letter, written from a Roman dungeon awaiting execution. It is the apostle's last will and testament to his spiritual son. Facing death, Paul passes the torch to Timothy—guard the gospel, endure suffering, preach the Word, complete your ministry. The letter is deeply personal, marked by loneliness, abandonment, yet unwavering confidence. Paul has fought the fight, finished the race, kept the faith.",
|
||||
"key_themes": [
|
||||
"Enduring suffering for the gospel",
|
||||
"Guarding the gospel deposit",
|
||||
"The inspiration and authority of Scripture",
|
||||
"Faithfulness amid apostasy",
|
||||
"Paul's final testimony",
|
||||
"Passing the torch to the next generation"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "2 Timothy 1:7", "text": "For God hath not given us the spirit of fear; but of power, and of love, and of a sound mind."},
|
||||
{"reference": "2 Timothy 2:15", "text": "Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly dividing the word of truth."},
|
||||
{"reference": "2 Timothy 3:16-17", "text": "All scripture is given by inspiration of God, and is profitable for doctrine, for reproof, for correction, for instruction in righteousness: That the man of God may be perfect, throughly furnished unto all good works."},
|
||||
{"reference": "2 Timothy 4:2", "text": "Preach the word; be instant in season, out of season; reprove, rebuke, exhort with all longsuffering and doctrine."},
|
||||
{"reference": "2 Timothy 4:7-8", "text": "I have fought a good fight, I have finished my course, I have kept the faith: Henceforth there is laid up for me a crown of righteousness, which the Lord, the righteous judge, shall give me at that day: and not to me only, but unto all them also that love his appearing."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Thanksgiving and Encouragement", "chapters": "1", "description": "Memories of Timothy, call to courage, Paul's example"},
|
||||
{"section": "Charge to Faithful Ministry", "chapters": "2", "description": "Soldier, athlete, farmer metaphors; approved worker"},
|
||||
{"section": "Warning About Last Days", "chapters": "3", "description": "Coming apostasy, Scripture's sufficiency"},
|
||||
{"section": "Final Charge and Farewell", "chapters": "4", "description": "Preach the Word, Paul's situation, final greetings"}
|
||||
],
|
||||
"historical_context": "Paul wrote during his second Roman imprisonment, different from the house arrest in Acts 28. Nero's persecution following the AD 64 fire made Christianity dangerous. Paul was in a dungeon, cold, lonely, and abandoned by most friends. He expected imminent execution ('the time of my departure is at hand'). This letter represents his final words to his beloved disciple Timothy.",
|
||||
"literary_style": "Second Timothy is the most personal of the Pastoral Epistles. Paul reminisces, expresses loneliness, requests his cloak and books, names those who have abandoned or helped him. The imagery is vivid—soldier, athlete, farmer, vessel, workman. The tone alternates between tender encouragement and urgent exhortation. The letter builds to Paul's triumphant testimony (4:6-8), a fitting conclusion to a remarkable ministry.",
|
||||
"christ_in_book": "Christ Jesus abolished death and brought life and immortality to light through the gospel. He is the risen one of David's seed. He is the one who will judge the living and dead at His appearing. The Lord stood with Paul when others abandoned him. There is a crown of righteousness for all who love His appearing. Christ's grace is with Timothy's spirit.",
|
||||
"practical_application": "Second Timothy challenges believers to endure suffering for the gospel without shame. Scripture is God-breathed and equips us for every good work. We must preach the Word in season and out of season, even when people prefer myths. The letter warns that the last days bring difficult times and religious pretenders. Paul's example inspires us to finish well—fighting the fight, finishing the course, keeping the faith. The crown awaits all who love Christ's appearing."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "III John",
|
||||
"abbreviation": "3John",
|
||||
"testament": "New Testament",
|
||||
"position": 64,
|
||||
"chapters": 1,
|
||||
"category": "General Epistles",
|
||||
"author": "John the Apostle",
|
||||
"date_written": "c. AD 85-95",
|
||||
"introduction": "Third John is the shortest New Testament book by word count. While Second John warns against receiving false teachers, Third John commends receiving true teachers. The letter contrasts Gaius, who showed hospitality to traveling ministers, with Diotrephes, who rejected them and John's authority. Demetrius receives commendation as a model believer. The letter addresses church politics, hospitality, and proper use of leadership.",
|
||||
"key_themes": [
|
||||
"Hospitality to faithful teachers",
|
||||
"Walking in truth",
|
||||
"Proper and improper leadership",
|
||||
"Supporting gospel workers",
|
||||
"The blessing of faithful service",
|
||||
"Imitation of good"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "3 John 1:4", "text": "I have no greater joy than to hear that my children walk in truth."},
|
||||
{"reference": "3 John 1:5-6", "text": "Beloved, thou doest faithfully whatsoever thou doest to the brethren, and to strangers; Which have borne witness of thy charity before the church: whom if thou bring forward on their journey after a godly sort, thou shalt do well."},
|
||||
{"reference": "3 John 1:9-10", "text": "I wrote unto the church: but Diotrephes, who loveth to have the preeminence among them, receiveth us not. Wherefore, if I come, I will remember his deeds which he doeth, prating against us with malicious words: and not content therewith, neither doth he himself receive the brethren, and forbiddeth them that would, and casteth them out of the church."},
|
||||
{"reference": "3 John 1:11", "text": "Beloved, follow not that which is evil, but that which is good. He that doeth good is of God: but he that doeth evil hath not seen God."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Greeting", "chapters": "1:1-2", "description": "To beloved Gaius, wish for health"},
|
||||
{"section": "Commendation of Gaius", "chapters": "1:3-8", "description": "Walking in truth, hospitality to brothers"},
|
||||
{"section": "Condemnation of Diotrephes", "chapters": "1:9-10", "description": "His pride and rejection of authority"},
|
||||
{"section": "Commendation of Demetrius", "chapters": "1:11-12", "description": "Good testimony, imitate good"},
|
||||
{"section": "Conclusion", "chapters": "1:13-14", "description": "Hope to visit, peace, greetings"}
|
||||
],
|
||||
"historical_context": "Traveling Christian teachers depended on hospitality from believers. This letter addresses a specific situation: Gaius faithfully supported such teachers while Diotrephes, apparently a local leader, refused them and even expelled those who did welcome them. Diotrephes had rejected a previous letter from John (v. 9). The letter shows early church struggles with hospitality, authority, and divisive leadership.",
|
||||
"literary_style": "Third John is a brief personal letter following Greco-Roman conventions. It names specific individuals—unusual for John. The contrast between Gaius (commended), Diotrephes (condemned), and Demetrius (commended) structures the body. John's affection for Gaius shows through ('beloved' appears four times). Like Second John, it closes with preference for face-to-face conversation.",
|
||||
"christ_in_book": "Christ is not explicitly named but is present throughout. Walking in 'the truth' is walking according to Christ and His teaching. Those who do good are 'of God'—Christ's example is the standard. Supporting gospel workers makes one a 'fellow worker for the truth.' The pattern of faithful service Gaius exhibits reflects Christ's servant heart.",
|
||||
"practical_application": "Third John provides case studies in church leadership. Gaius shows how to support gospel ministry practically—providing for traveling teachers. Diotrephes shows the danger of prideful leadership that resists accountability and divides the church. Demetrius shows a reputation built on consistent conduct. The letter calls us to 'imitate good'—choosing worthy examples. Supporting faithful ministers advances truth; opposing them opposes Christ."
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "Acts",
|
||||
"abbreviation": "Acts",
|
||||
"testament": "New Testament",
|
||||
"position": 44,
|
||||
"chapters": 28,
|
||||
"category": "History",
|
||||
"author": "Luke, the physician and companion of Paul",
|
||||
"date_written": "c. AD 63-80",
|
||||
"introduction": "Acts is the sequel to Luke's Gospel, recording how the risen Christ continued His work through His apostles by the Holy Spirit. From Jerusalem to Rome, from 120 believers to a movement spanning the Roman Empire, Acts traces the gospel's advance across barriers of culture, race, and geography. It is the story of the Spirit's power, the church's growth, and the unstoppable spread of the Word of God.",
|
||||
"key_themes": [
|
||||
"The Holy Spirit empowering the church",
|
||||
"The spread of the gospel from Jerusalem to Rome",
|
||||
"Bold witness despite persecution",
|
||||
"The inclusion of Gentiles",
|
||||
"The church's expansion and organization",
|
||||
"The sovereignty of God in history"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Acts 1:8", "text": "But ye shall receive power, after that the Holy Ghost is come upon you: and ye shall be witnesses unto me both in Jerusalem, and in all Judaea, and in Samaria, and unto the uttermost part of the earth."},
|
||||
{"reference": "Acts 2:42", "text": "And they continued stedfastly in the apostles' doctrine and fellowship, and in breaking of bread, and in prayers."},
|
||||
{"reference": "Acts 4:12", "text": "Neither is there salvation in any other: for there is none other name under heaven given among men, whereby we must be saved."},
|
||||
{"reference": "Acts 16:31", "text": "And they said, Believe on the Lord Jesus Christ, and thou shalt be saved, and thy house."},
|
||||
{"reference": "Acts 28:31", "text": "Preaching the kingdom of God, and teaching those things which concern the Lord Jesus Christ, with all confidence, no man forbidding him."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "The Church in Jerusalem", "chapters": "1-7", "description": "Ascension, Pentecost, early community, Stephen's martyrdom"},
|
||||
{"section": "Expansion to Judea and Samaria", "chapters": "8-12", "description": "Philip, Saul's conversion, Cornelius, Antioch"},
|
||||
{"section": "Paul's First Missionary Journey", "chapters": "13-14", "description": "Cyprus, Galatia, return to Antioch"},
|
||||
{"section": "Jerusalem Council", "chapters": "15", "description": "Gentile inclusion debated and affirmed"},
|
||||
{"section": "Paul's Second Journey", "chapters": "16-18", "description": "Philippi, Thessalonica, Athens, Corinth"},
|
||||
{"section": "Paul's Third Journey", "chapters": "19-21", "description": "Ephesus, Greece, return to Jerusalem"},
|
||||
{"section": "Paul's Trials and Journey to Rome", "chapters": "22-28", "description": "Arrest, defense speeches, voyage, Rome"}
|
||||
],
|
||||
"historical_context": "Acts covers approximately thirty years (AD 30-62), from Jesus' ascension to Paul's Roman imprisonment. This was a pivotal era as the church emerged from Jewish roots, spread throughout the Roman Empire, and established its distinct identity. The book may have been written before Paul's death, explaining the abrupt ending without resolution of his case. Luke traveled with Paul on portions of the journeys (the 'we' sections).",
|
||||
"literary_style": "Acts is ancient historiography with theological purpose. Luke provides geographical and chronological markers for historical grounding. The sermons (Peter's at Pentecost, Paul's at Athens) present apostolic preaching. The narrative shifts from Peter's prominence (chapters 1-12) to Paul's (chapters 13-28). The repeated theme of the Word spreading and believers increasing provides structural markers. The book ends with Paul preaching 'unhindered'—the gospel cannot be chained.",
|
||||
"christ_in_book": "Though ascended, Jesus remains Acts' central figure. He pours out the Spirit, adds to the church, and directs the mission. His name brings healing, His authority demands obedience, His return frames Christian hope. The apostles preach 'the things concerning Jesus' everywhere. He is the fulfillment of Israel's hopes, the Lord of all, the only Savior. Acts shows Christ building His church through human witnesses empowered by His Spirit.",
|
||||
"practical_application": "Acts models Spirit-empowered witness that crosses every barrier. It shows the church as a community of Word, fellowship, breaking bread, and prayer. The book demonstrates that suffering and opposition accompany gospel advance. It encourages believers that God's purposes cannot be thwarted. Acts raises questions about church practice that Christians continue to discuss. Above all, it calls us to be witnesses to Jesus 'unto the uttermost part of the earth.'"
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Amos",
|
||||
"abbreviation": "Amos",
|
||||
"testament": "Old Testament",
|
||||
"position": 30,
|
||||
"chapters": 9,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Amos",
|
||||
"date_written": "c. 760-750 BC",
|
||||
"introduction": "Amos was a shepherd and fig farmer from Judah who delivered God's message of judgment to the prosperous northern kingdom. He denounced social injustice, religious hypocrisy, and complacent luxury. His message was scandalous: Israel's privilege as God's chosen people made their sin more serious, not less. Amos calls for justice to roll down like waters—a cry that echoes through the centuries.",
|
||||
"key_themes": [
|
||||
"Social justice and care for the poor",
|
||||
"Condemnation of religious hypocrisy",
|
||||
"Privilege increases accountability",
|
||||
"The Day of the LORD as judgment",
|
||||
"God's sovereign rule over all nations",
|
||||
"Hope for a restored Davidic kingdom"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Amos 3:2", "text": "You only have I known of all the families of the earth: therefore I will punish you for all your iniquities."},
|
||||
{"reference": "Amos 5:21-24", "text": "I hate, I despise your feast days, and I will not smell in your solemn assemblies... But let judgment run down as waters, and righteousness as a mighty stream."},
|
||||
{"reference": "Amos 7:14-15", "text": "Then answered Amos, and said to Amaziah, I was no prophet, neither was I a prophet's son; but I was an herdman, and a gatherer of sycomore fruit: And the LORD took me as I followed the flock, and the LORD said unto me, Go, prophesy unto my people Israel."},
|
||||
{"reference": "Amos 9:11", "text": "In that day will I raise up the tabernacle of David that is fallen, and close up the breaches thereof; and I will raise up his ruins, and I will build it as in the days of old."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Oracles Against Nations", "chapters": "1-2", "description": "Damascus, Gaza, Tyre, Edom, Ammon, Moab, Judah, Israel"},
|
||||
{"section": "Indictments of Israel", "chapters": "3-6", "description": "Privilege brings judgment, woe to the complacent"},
|
||||
{"section": "Visions of Judgment", "chapters": "7:1-9:10", "description": "Locusts, fire, plumb line, summer fruit, altar destruction"},
|
||||
{"section": "Restoration Promise", "chapters": "9:11-15", "description": "David's booth raised, abundance restored"}
|
||||
],
|
||||
"historical_context": "Amos prophesied during the prosperous reigns of Jeroboam II in Israel and Uzziah in Judah (around 760-750 BC). The northern kingdom enjoyed its greatest territorial expansion and economic success since Solomon. But wealth concentrated among the elite while the poor were exploited. Religious observances flourished at shrines like Bethel, but divorced from justice and covenant faithfulness.",
|
||||
"literary_style": "Amos is renowned for his vivid imagery drawn from rural life—lion's roaring, trapped birds, overloaded carts, cow brands, sifted grain. His rhetorical skill is evident in the opening oracles, which spiral inward from foreign nations to Israel. The visions (locusts, fire, plumb line, summer fruit) use wordplay and visual impact. The book moves from relentless judgment to a surprising note of restoration hope.",
|
||||
"christ_in_book": "James quotes Amos 9:11-12 at the Jerusalem Council (Acts 15:16-17) to explain Gentile inclusion in the church—the rebuilt 'booth of David' includes all nations. Christ fulfills the hope for a restored Davidic kingdom. Jesus' confrontation of religious leaders who neglected justice and mercy echoes Amos's themes. The call for justice anticipates Christ's kingdom where righteousness reigns.",
|
||||
"practical_application": "Amos confronts the comfortable assumption that religious activity can substitute for justice and integrity. It warns that economic prosperity can mask moral decay. The book calls God's people to examine whether their worship is matched by care for the vulnerable. Privilege brings responsibility—those who know more are held to higher standards. Amos's cry for justice challenges every generation to let righteousness flow like a never-ending stream."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Colossians",
|
||||
"abbreviation": "Col",
|
||||
"testament": "New Testament",
|
||||
"position": 51,
|
||||
"chapters": 4,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 60-62",
|
||||
"introduction": "Colossians presents the supremacy and sufficiency of Christ against false teaching that threatened the church. False teachers were adding requirements—dietary laws, festivals, mystical experiences, angel worship—to faith in Christ. Paul responds with the highest Christology in his letters: Christ is the image of the invisible God, creator and sustainer of all, head of the church, and fullness of deity in bodily form. In Him believers are complete.",
|
||||
"key_themes": [
|
||||
"The supremacy of Christ over all",
|
||||
"The sufficiency of Christ for salvation",
|
||||
"Warning against false teaching",
|
||||
"Hidden with Christ in God",
|
||||
"The new life in Christ",
|
||||
"Christ in you, the hope of glory"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Colossians 1:15-17", "text": "Who is the image of the invisible God, the firstborn of every creature: For by him were all things created, that are in heaven, and that are in earth, visible and invisible, whether they be thrones, or dominions, or principalities, or powers: all things were created by him, and for him: And he is before all things, and by him all things consist."},
|
||||
{"reference": "Colossians 1:27", "text": "To whom God would make known what is the riches of the glory of this mystery among the Gentiles; which is Christ in you, the hope of glory."},
|
||||
{"reference": "Colossians 2:9-10", "text": "For in him dwelleth all the fulness of the Godhead bodily. And ye are complete in him, which is the head of all principality and power."},
|
||||
{"reference": "Colossians 3:1-2", "text": "If ye then be risen with Christ, seek those things which are above, where Christ sitteth on the right hand of God. Set your affection on things above, not on things on the earth."},
|
||||
{"reference": "Colossians 3:17", "text": "And whatsoever ye do in word or deed, do all in the name of the Lord Jesus, giving thanks to God and the Father by him."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction", "chapters": "1:1-14", "description": "Greetings, thanksgiving, prayer"},
|
||||
{"section": "The Supremacy of Christ", "chapters": "1:15-2:5", "description": "Christ-hymn, Paul's ministry, the mystery revealed"},
|
||||
{"section": "Warning Against False Teaching", "chapters": "2:6-23", "description": "Complete in Christ, empty philosophy rejected"},
|
||||
{"section": "The New Life in Christ", "chapters": "3:1-4:6", "description": "Risen with Christ, relationships transformed"},
|
||||
{"section": "Conclusion", "chapters": "4:7-18", "description": "Personal greetings and final words"}
|
||||
],
|
||||
"historical_context": "Colossae was a small city in the Lycus Valley of Asia Minor, near Laodicea and Hierapolis. Paul had not visited personally; the church was founded by Epaphras, his co-worker. The 'Colossian heresy' combined Jewish elements (festivals, food laws) with proto-Gnostic ideas (secret knowledge, spirit hierarchies, asceticism). Paul wrote from prison to counter this syncretism with the all-sufficiency of Christ.",
|
||||
"literary_style": "Colossians features a magnificent Christ-hymn (1:15-20) parallel to Philippians 2. Paul's style is dense, with long sentences packed with theological content. The letter moves from Christology (who Christ is) to ethics (how to live). The household codes (3:18-4:1) show how the gospel transforms everyday relationships. The contrast between the 'old man' and 'new man' structures the ethical section.",
|
||||
"christ_in_book": "Colossians presents perhaps Scripture's highest Christology. Christ is the image of the invisible God, firstborn over creation, creator of all things, before all things, the one holding all things together, head of the church, first to rise from the dead, possessing all fullness, reconciler of all things. In Him the fullness of deity dwells bodily. Believers are complete in Him—nothing more is needed.",
|
||||
"practical_application": "Colossians warns against anything that adds to or diminishes Christ's sufficiency. No experience, discipline, or knowledge completes what is already complete in Him. The new life means putting off the old—anger, malice, lying—and putting on compassion, kindness, forgiveness. Every relationship and activity should be done 'in the name of the Lord Jesus.' The letter calls us to set our minds on things above where Christ is seated—our life is hidden with Him in God."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Daniel",
|
||||
"abbreviation": "Dan",
|
||||
"testament": "Old Testament",
|
||||
"position": 27,
|
||||
"chapters": 12,
|
||||
"category": "Major Prophets",
|
||||
"author": "Daniel",
|
||||
"date_written": "c. 536-530 BC",
|
||||
"introduction": "Daniel is both historical narrative and apocalyptic prophecy. A young Jewish exile rises to prominence in the Babylonian and Persian courts while remaining faithful to God. The book's visions survey world history from Babylon to Christ's coming kingdom. Daniel demonstrates that God is sovereign over all nations and that faithfulness will be vindicated. The book provides foundational concepts for New Testament eschatology.",
|
||||
"key_themes": [
|
||||
"God's sovereignty over kingdoms and history",
|
||||
"Faithfulness under pressure",
|
||||
"The rise and fall of world empires",
|
||||
"The coming kingdom of God",
|
||||
"Prayer and spiritual warfare",
|
||||
"The final resurrection and judgment"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Daniel 2:44", "text": "And in the days of these kings shall the God of heaven set up a kingdom, which shall never be destroyed: and the kingdom shall not be left to other people, but it shall break in pieces and consume all these kingdoms, and it shall stand for ever."},
|
||||
{"reference": "Daniel 3:17-18", "text": "If it be so, our God whom we serve is able to deliver us from the burning fiery furnace, and he will deliver us out of thine hand, O king. But if not, be it known unto thee, O king, that we will not serve thy gods, nor worship the golden image which thou hast set up."},
|
||||
{"reference": "Daniel 4:35", "text": "And all the inhabitants of the earth are reputed as nothing: and he doeth according to his will in the army of heaven, and among the inhabitants of the earth: and none can stay his hand, or say unto him, What doest thou?"},
|
||||
{"reference": "Daniel 7:13-14", "text": "I saw in the night visions, and, behold, one like the Son of man came with the clouds of heaven... And there was given him dominion, and glory, and a kingdom, that all people, nations, and languages, should serve him."},
|
||||
{"reference": "Daniel 12:2", "text": "And many of them that sleep in the dust of the earth shall awake, some to everlasting life, and some to shame and everlasting contempt."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Daniel's Rise in Babylon", "chapters": "1", "description": "Training, faithfulness in diet, God's favor"},
|
||||
{"section": "Nebuchadnezzar's Dreams", "chapters": "2-4", "description": "The statue, fiery furnace, Nebuchadnezzar's humbling"},
|
||||
{"section": "Babylon's Fall", "chapters": "5-6", "description": "Belshazzar's feast, Daniel in the lions' den"},
|
||||
{"section": "Apocalyptic Visions", "chapters": "7-12", "description": "Four beasts, ram and goat, seventy weeks, final conflicts"}
|
||||
],
|
||||
"historical_context": "Daniel was deported to Babylon in 605 BC as a teenager and served in royal courts for over 65 years. He witnessed Babylon's fall to Persia in 539 BC and continued serving under Persian rule. The book's visions accurately portray the succession of empires: Babylon, Medo-Persia, Greece (with its division), and Rome. The '70 weeks' prophecy (9:24-27) provides a timeline extending to the Messiah.",
|
||||
"literary_style": "Daniel divides into court narratives (1-6) and apocalyptic visions (7-12). Chapters 2:4-7:28 are in Aramaic (the international language), while the rest is Hebrew. The apocalyptic sections feature symbolic beasts, angelic interpreters, and cosmic conflict. Numbers carry significance (seventy weeks, time/times/half a time). The structure is chiastic, with matching elements in chapters 2-7.",
|
||||
"christ_in_book": "The 'Son of man' who receives an everlasting kingdom (7:13-14) is Jesus' favorite self-designation. The stone cut without hands that destroys worldly kingdoms (2:44-45) is Christ's kingdom. The seventy weeks prophecy (9:24-27) points to Messiah's coming and death. The three Hebrew men's deliverance from fire and Daniel from lions picture Christ's deliverance from death. The archangel Michael (10:13, 21; 12:1) anticipates Christ's cosmic victory.",
|
||||
"practical_application": "Daniel models faithful living in a hostile culture—engaged but not compromised. It encourages believers that God is sovereign over all earthly powers and that kingdoms rise and fall at His command. The book calls us to prayerful dependence, even when prayer is dangerous. It assures us that faithful witness may bring persecution but will ultimately be vindicated. Daniel's hope in resurrection and final judgment grounds present faithfulness."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Deuteronomy",
|
||||
"abbreviation": "Deut",
|
||||
"testament": "Old Testament",
|
||||
"position": 5,
|
||||
"chapters": 34,
|
||||
"category": "Law (Torah/Pentateuch)",
|
||||
"author": "Moses",
|
||||
"date_written": "c. 1406 BC",
|
||||
"introduction": "Deuteronomy, meaning 'second law,' contains Moses' final sermons to Israel as they prepared to enter the Promised Land without him. It is not new legislation but a restatement and application of the Sinai covenant for a new generation. Deuteronomy is the most quoted Old Testament book in the New Testament, forming the theological heart of biblical faith. It calls for whole-hearted love and loyalty to the one true God.",
|
||||
"key_themes": [
|
||||
"The one God deserving exclusive loyalty",
|
||||
"Love as the foundation of obedience",
|
||||
"Remembering God's faithfulness",
|
||||
"Covenant renewal and commitment",
|
||||
"Blessings for obedience, curses for disobedience",
|
||||
"The choice between life and death"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Deuteronomy 6:4-5", "text": "Hear, O Israel: The LORD our God is one LORD: And thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might."},
|
||||
{"reference": "Deuteronomy 8:3", "text": "And he humbled thee, and suffered thee to hunger, and fed thee with manna, which thou knewest not, neither did thy fathers know; that he might make thee know that man doth not live by bread only, but by every word that proceedeth out of the mouth of the LORD doth man live."},
|
||||
{"reference": "Deuteronomy 18:15", "text": "The LORD thy God will raise up unto thee a Prophet from the midst of thee, of thy brethren, like unto me; unto him ye shall hearken."},
|
||||
{"reference": "Deuteronomy 30:19", "text": "I call heaven and earth to record this day against you, that I have set before you life and death, blessing and cursing: therefore choose life, that both thou and thy seed may live."},
|
||||
{"reference": "Deuteronomy 31:6", "text": "Be strong and of a good courage, fear not, nor be afraid of them: for the LORD thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "First Address: Historical Prologue", "chapters": "1-4", "description": "Review of the wilderness journey and call to obedience"},
|
||||
{"section": "Second Address: The Law Expounded", "chapters": "5-26", "description": "The Ten Commandments restated, the Shema, and detailed laws"},
|
||||
{"section": "Third Address: Covenant Renewal", "chapters": "27-30", "description": "Blessings and curses, the choice of life or death"},
|
||||
{"section": "Final Acts of Moses", "chapters": "31-34", "description": "Joshua commissioned, the Song of Moses, final blessing, and death"}
|
||||
],
|
||||
"historical_context": "Moses delivered these sermons during the final weeks of his life on the plains of Moab, across the Jordan from Jericho. The original audience was the second generation—children of those who died in the wilderness. They needed to understand the covenant they were inheriting and the land they were about to possess. The book follows the pattern of ancient Near Eastern suzerainty treaties, establishing Israel's covenant relationship with their Divine King.",
|
||||
"literary_style": "Deuteronomy is primarily sermonic discourse, with Moses as preacher passionately urging covenant faithfulness. It features repetition for emphasis, rhetorical questions, and frequent appeals to remember. The book includes some of the Bible's most beautiful poetry (chapters 32-33) and profound theological reflection. Its treaty format (preamble, historical prologue, stipulations, blessings and curses, witnesses) reflects its covenant nature.",
|
||||
"christ_in_book": "Jesus quoted Deuteronomy to counter Satan's temptations and identified the Shema as the greatest commandment. The promised Prophet 'like unto Moses' (18:15) is fulfilled in Christ, acknowledged by Peter (Acts 3:22) and Stephen (Acts 7:37). The curses of Deuteronomy fell upon Christ on the cross, 'for cursed is every one that hangeth on a tree' (Galatians 3:13, quoting Deuteronomy 21:23). Christ's teaching ministry parallels Moses' final instruction to Israel.",
|
||||
"practical_application": "Deuteronomy teaches that love for God must be whole-hearted, not compartmentalized. It emphasizes passing faith to the next generation through intentional teaching. The book warns against prosperity's spiritual dangers and calls us to remember God's past faithfulness as motivation for present obedience. Its vision of covenant community shaped by God's Word remains relevant for the church today. The choice it presents—life or death, blessing or curse—confronts every generation."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Ecclesiastes",
|
||||
"abbreviation": "Eccl",
|
||||
"testament": "Old Testament",
|
||||
"position": 21,
|
||||
"chapters": 12,
|
||||
"category": "Wisdom/Poetry",
|
||||
"author": "Solomon (the Preacher/Qoheleth)",
|
||||
"date_written": "c. 935 BC",
|
||||
"introduction": "Ecclesiastes confronts life's apparent meaninglessness with unflinching honesty. The 'Preacher' explores wisdom, pleasure, work, wealth, and achievement—and declares them all 'vanity' (hebel—vapor, breath, fleeting). Yet this is not nihilism but a sober assessment that leads to wisdom: Fear God, enjoy His simple gifts, and remember your Creator. The book strips away illusions so that true meaning can be found in God alone.",
|
||||
"key_themes": [
|
||||
"The vanity (futility) of life 'under the sun'",
|
||||
"The limits of human wisdom and achievement",
|
||||
"The gift of simple pleasures from God",
|
||||
"Death as the great equalizer",
|
||||
"Time and chance in human affairs",
|
||||
"The fear of God as life's conclusion"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Ecclesiastes 1:2", "text": "Vanity of vanities, saith the Preacher, vanity of vanities; all is vanity."},
|
||||
{"reference": "Ecclesiastes 3:1", "text": "To every thing there is a season, and a time to every purpose under the heaven."},
|
||||
{"reference": "Ecclesiastes 3:11", "text": "He hath made every thing beautiful in his time: also he hath set the world in their heart, so that no man can find out the work that God maketh from the beginning to the end."},
|
||||
{"reference": "Ecclesiastes 12:1", "text": "Remember now thy Creator in the days of thy youth, while the evil days come not, nor the years draw nigh, when thou shalt say, I have no pleasure in them."},
|
||||
{"reference": "Ecclesiastes 12:13-14", "text": "Let us hear the conclusion of the whole matter: Fear God, and keep his commandments: for this is the whole duty of man. For God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Theme: All is Vanity", "chapters": "1:1-11", "description": "Introduction and the cycles of nature"},
|
||||
{"section": "The Quest for Meaning", "chapters": "1:12-2:26", "description": "Testing wisdom, pleasure, and work"},
|
||||
{"section": "Time and Injustice", "chapters": "3-4", "description": "Seasons, death, oppression, rivalry"},
|
||||
{"section": "Wisdom for Living", "chapters": "5-8", "description": "Worship, wealth, wisdom's limits, authorities"},
|
||||
{"section": "Life's Uncertainties", "chapters": "9-11", "description": "Death, chance, practical wisdom"},
|
||||
{"section": "Conclusion", "chapters": "12", "description": "Remember your Creator; fear God"}
|
||||
],
|
||||
"historical_context": "Solomon's unparalleled wisdom, wealth, and experience uniquely positioned him to evaluate all that life 'under the sun' could offer. His conclusion after exhaustive searching was that nothing earthly provides lasting satisfaction. The book was likely written in his later years, perhaps reflecting on the emptiness his compromises had produced. It was read at the Feast of Tabernacles, reminding Israel of life's transience.",
|
||||
"literary_style": "Ecclesiastes uses the Hebrew term hebel (vapor/breath/vanity) 38 times to describe life's fleeting nature. The phrase 'under the sun' (29 times) denotes the earthly, horizontal perspective apart from God's eternal purposes. The book mixes poetry and prose, proverbs and personal reflection. Its dialectical style presents apparent contradictions that drive readers toward the concluding resolution.",
|
||||
"christ_in_book": "Ecclesiastes reveals humanity's need for something beyond what this world offers—a need Christ fulfills. The Teacher's search for meaning ends in frustration; Christ offers abundant life (John 10:10). The book's emphasis on death as the end of earthly striving points to Christ's victory over death. Where Ecclesiastes offers 'fear God,' Christ offers relationship with the Father. The 'eternity in their hearts' that Ecclesiastes mentions is satisfied in Christ.",
|
||||
"practical_application": "Ecclesiastes liberates us from the tyranny of achievement and acquisition by exposing their ultimate emptiness. It frees us to enjoy simple pleasures—food, drink, work, relationships—as God's gifts without making them ultimate. The book warns against workaholism, materialism, and the illusion that 'more' will satisfy. It calls us to remember our Creator while young and to fear God all our days. Its brutal honesty about life's frustrations validates our experiences while pointing us to transcendent hope."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "Ephesians",
|
||||
"abbreviation": "Eph",
|
||||
"testament": "New Testament",
|
||||
"position": 49,
|
||||
"chapters": 6,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 60-62",
|
||||
"introduction": "Ephesians presents the grand scope of God's eternal purpose—to unite all things in Christ and create a new humanity, the church. From eternity past to the heavenly places, Paul unfolds the riches of grace and believers' exalted position in Christ. The letter moves from doctrine to duty, from our wealth in Christ to our walk in the world. Ephesians is perhaps Paul's most sublime theological achievement.",
|
||||
"key_themes": [
|
||||
"God's eternal purpose in Christ",
|
||||
"Spiritual blessings in heavenly places",
|
||||
"Salvation by grace through faith",
|
||||
"Unity of Jew and Gentile in Christ",
|
||||
"The church as Christ's body and bride",
|
||||
"Spiritual warfare"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Ephesians 1:3", "text": "Blessed be the God and Father of our Lord Jesus Christ, who hath blessed us with all spiritual blessings in heavenly places in Christ."},
|
||||
{"reference": "Ephesians 2:8-9", "text": "For by grace are ye saved through faith; and that not of yourselves: it is the gift of God: Not of works, lest any man should boast."},
|
||||
{"reference": "Ephesians 2:10", "text": "For we are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them."},
|
||||
{"reference": "Ephesians 4:4-6", "text": "There is one body, and one Spirit, even as ye are called in one hope of your calling; One Lord, one faith, one baptism, One God and Father of all, who is above all, and through all, and in you all."},
|
||||
{"reference": "Ephesians 6:12", "text": "For we wrestle not against flesh and blood, but against principalities, against powers, against the rulers of the darkness of this world, against spiritual wickedness in high places."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Doctrinal: Our Wealth in Christ", "chapters": "1-3", "description": "Spiritual blessings, salvation by grace, mystery of the church"},
|
||||
{"section": "Practical: Our Walk in the World", "chapters": "4-6", "description": "Unity, new life, relationships, spiritual warfare"}
|
||||
],
|
||||
"historical_context": "Paul wrote Ephesians from Roman imprisonment (around AD 60-62). The letter may have been a circular letter to multiple churches in Asia Minor, which would explain the absence of personal greetings to a church where Paul spent three years. Ephesus was a major city, home to the temple of Artemis and known for magic arts. Paul's Ephesian ministry is detailed in Acts 19.",
|
||||
"literary_style": "Ephesians is noted for its elevated, liturgical style. The opening blessing (1:3-14) is one long sentence in Greek—a cascade of praise. The prayer sections (1:15-23; 3:14-21) are magnificent. Paul's typical pattern of indicative (what is true) followed by imperative (what to do) is clearly structured: chapters 1-3 establish identity; chapters 4-6 call for conduct that matches. The armor of God passage (6:10-18) is memorable imagery.",
|
||||
"christ_in_book": "Christ is central throughout. All spiritual blessings are 'in Christ.' He is seated at God's right hand, head over all things to the church. He broke down the dividing wall between Jew and Gentile. He gave gifts to the church. His love for the church models husbands' love for wives. Believers are to put on Christ's armor. From election before foundation of the world to final victory, Christ is supreme.",
|
||||
"practical_application": "Ephesians calls believers to live worthy of their calling—rooted in the knowledge of who we are in Christ. Unity is essential; we are one body with one Lord. The new life means putting off the old self and putting on the new. Every relationship (marriage, family, work) is transformed by Christ. We are in a spiritual battle requiring God's full armor. The letter grounds ethics in identity—we act on what we already are in Christ."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Esther",
|
||||
"abbreviation": "Esth",
|
||||
"testament": "Old Testament",
|
||||
"position": 17,
|
||||
"chapters": 10,
|
||||
"category": "History",
|
||||
"author": "Unknown (possibly Mordecai)",
|
||||
"date_written": "c. 460-400 BC",
|
||||
"introduction": "Esther is a dramatic story of providence, courage, and deliverance. A Jewish orphan becomes queen of Persia and risks her life to save her people from genocide. Though God's name never appears in the book, His sovereign hand is evident throughout. Esther explains the origin of Purim, the Jewish festival celebrating this remarkable rescue. The book demonstrates that God works behind the scenes to preserve His people even when He seems absent.",
|
||||
"key_themes": [
|
||||
"God's hidden providence",
|
||||
"Courage to act at the right moment",
|
||||
"Reversal of fortunes",
|
||||
"The preservation of God's people",
|
||||
"The danger of pride and hatred",
|
||||
"Divine timing and positioning"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Esther 4:14", "text": "For if thou altogether holdest thy peace at this time, then shall there enlargement and deliverance arise to the Jews from another place; but thou and thy father's house shall be destroyed: and who knoweth whether thou art come to the kingdom for such a time as this?"},
|
||||
{"reference": "Esther 4:16", "text": "Go, gather together all the Jews that are present in Shushan, and fast ye for me, and neither eat nor drink three days, night or day: I also and my maidens will fast likewise; and so will I go in unto the king, which is not according to the law: and if I perish, I perish."},
|
||||
{"reference": "Esther 6:1", "text": "On that night could not the king sleep, and he commanded to bring the book of records of the chronicles; and they were read before the king."},
|
||||
{"reference": "Esther 9:1", "text": "Now in the twelfth month... in the day that the enemies of the Jews hoped to have power over them, (though it was turned to the contrary, that the Jews had rule over them that hated them)."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Esther Becomes Queen", "chapters": "1-2", "description": "Vashti deposed, Esther chosen, Mordecai's loyalty"},
|
||||
{"section": "Haman's Plot", "chapters": "3-4", "description": "Haman's promotion, his hatred, the decree, Mordecai's challenge"},
|
||||
{"section": "Esther's Courage", "chapters": "5-7", "description": "First banquet, Haman's gallows, sleepless night, Haman's fall"},
|
||||
{"section": "The Jews' Deliverance", "chapters": "8-10", "description": "New decree, victory, Purim established, Mordecai exalted"}
|
||||
],
|
||||
"historical_context": "The events occur during the reign of Xerxes I (486-465 BC), between the first return under Zerubbabel and Ezra's return. Most Jews had not returned to Judea but remained scattered throughout the Persian Empire. The story is set in Susa, the Persian winter capital. The detailed knowledge of Persian customs and court life suggests an author familiar with that setting.",
|
||||
"literary_style": "Esther is a masterpiece of narrative art. Irony pervades the story: Haman is honored on the gallows he built; the date he chose for the Jews' destruction becomes their victory. The reversals are complete—mourning becomes joy, victims become victors, Mordecai replaces Haman. The structure is chiastic, with the king's sleepless night at the center. The absence of God's name makes His providential presence all the more striking.",
|
||||
"christ_in_book": "Esther as advocate who risks everything to save her people pictures Christ as our advocate. Mordecai's exaltation after suffering reflects Christ's pattern. The deliverance from certain death foreshadows salvation. The feast of Purim, celebrating rescue from an enemy's plot, anticipates the Lord's Supper celebrating Christ's victory. The reversal theme points to the cross, where apparent defeat became ultimate triumph.",
|
||||
"practical_application": "Esther teaches that God is at work even when we cannot see or hear Him. It challenges us to consider whether we have been placed in our positions 'for such a time as this.' The book encourages courageous action when God's people are threatened. It warns against the poison of pride and hatred (Haman) and shows that evil schemes ultimately backfire. Esther and Mordecai model wisdom, patience, and decisive action in their timing."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Exodus",
|
||||
"abbreviation": "Ex",
|
||||
"testament": "Old Testament",
|
||||
"position": 2,
|
||||
"chapters": 40,
|
||||
"category": "Law (Torah/Pentateuch)",
|
||||
"author": "Moses",
|
||||
"date_written": "c. 1446-1406 BC",
|
||||
"introduction": "Exodus, meaning 'departure' or 'going out,' records Israel's dramatic liberation from Egyptian slavery and their formation as a nation under God's covenant at Sinai. This pivotal book reveals God as the great Redeemer who hears the cries of His people and acts powerfully on their behalf. The Exodus event becomes the defining moment of Israel's history, referenced throughout Scripture as the supreme example of God's saving power.",
|
||||
"key_themes": [
|
||||
"God's redemption and deliverance",
|
||||
"The revelation of God's name and character (I AM)",
|
||||
"Judgment against false gods",
|
||||
"The Passover and blood atonement",
|
||||
"Covenant relationship and the Law",
|
||||
"God's presence dwelling among His people"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Exodus 3:14", "text": "And God said unto Moses, I AM THAT I AM: and he said, Thus shalt thou say unto the children of Israel, I AM hath sent me unto you."},
|
||||
{"reference": "Exodus 12:13", "text": "And the blood shall be to you for a token upon the houses where ye are: and when I see the blood, I will pass over you, and the plague shall not be upon you to destroy you, when I smite the land of Egypt."},
|
||||
{"reference": "Exodus 14:13-14", "text": "And Moses said unto the people, Fear ye not, stand still, and see the salvation of the LORD... The LORD shall fight for you, and ye shall hold your peace."},
|
||||
{"reference": "Exodus 19:5-6", "text": "Now therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be a peculiar treasure unto me above all people: for all the earth is mine: And ye shall be unto me a kingdom of priests, and an holy nation."},
|
||||
{"reference": "Exodus 20:2-3", "text": "I am the LORD thy God, which have brought thee out of the land of Egypt, out of the house of bondage. Thou shalt have no other gods before me."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Israel in Egypt", "chapters": "1-12", "description": "Slavery, Moses' call, the plagues, and the Passover"},
|
||||
{"section": "Israel's Deliverance", "chapters": "13-18", "description": "Crossing the Red Sea, wilderness journey, and arrival at Sinai"},
|
||||
{"section": "Israel at Sinai", "chapters": "19-24", "description": "The giving of the Law and establishment of the covenant"},
|
||||
{"section": "The Tabernacle Instructions", "chapters": "25-31", "description": "God's detailed plans for His dwelling place"},
|
||||
{"section": "The Golden Calf", "chapters": "32-34", "description": "Israel's apostasy and God's gracious renewal"},
|
||||
{"section": "The Tabernacle Construction", "chapters": "35-40", "description": "Building the Tabernacle and God's glory filling it"}
|
||||
],
|
||||
"historical_context": "The events of Exodus took place during Egypt's powerful 18th Dynasty. Israel had been in Egypt for 430 years, growing from 70 people to over two million. The ten plagues directly challenged the Egyptian gods, demonstrating the LORD's supremacy. The book establishes the patterns of worship, sacrifice, and priesthood that would define Israel's relationship with God for centuries.",
|
||||
"literary_style": "Exodus combines dramatic narrative (the plague accounts, Red Sea crossing), legal material (the Ten Commandments and the Book of the Covenant), liturgical instructions (Passover regulations), and detailed architectural specifications (Tabernacle plans). The Song of Moses (chapter 15) is one of Scripture's earliest and finest examples of Hebrew poetry.",
|
||||
"christ_in_book": "Exodus is rich in Christological imagery: Moses as mediator foreshadows Christ the ultimate Mediator; the Passover lamb points to Christ our Passover (1 Corinthians 5:7); the manna speaks of Christ the Bread of Life; the smitten rock pictures Christ from whom living water flows; the Tabernacle represents God dwelling among His people, fulfilled in the Incarnation; and the high priest foreshadows Christ our great High Priest.",
|
||||
"practical_application": "Exodus reminds us that God hears our cries and delivers us from bondage—whether physical, spiritual, or emotional. It teaches that redemption is by blood (the Passover), that God desires intimate relationship with His people (the Tabernacle), and that holiness is the expected response to grace. The pattern of redemption before law shows that obedience flows from gratitude, not as a means of earning salvation."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Ezekiel",
|
||||
"abbreviation": "Ezek",
|
||||
"testament": "Old Testament",
|
||||
"position": 26,
|
||||
"chapters": 48,
|
||||
"category": "Major Prophets",
|
||||
"author": "Ezekiel",
|
||||
"date_written": "c. 593-571 BC",
|
||||
"introduction": "Ezekiel prophesied from Babylon to fellow exiles, explaining why Jerusalem fell and offering hope for restoration. His visions are among Scripture's most dramatic—God's glory departing the temple, the valley of dry bones coming to life, and a new temple in a restored land. The book's central message: The LORD will vindicate His holy name by judging sin and then restoring His people, so that all will 'know that I am the LORD.'",
|
||||
"key_themes": [
|
||||
"The glory of God and His holiness",
|
||||
"Personal responsibility for sin",
|
||||
"Judgment on Judah and the nations",
|
||||
"The new heart and new spirit",
|
||||
"Resurrection and restoration of Israel",
|
||||
"The future temple and God's dwelling"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Ezekiel 1:28", "text": "As the appearance of the bow that is in the cloud in the day of rain, so was the appearance of the brightness round about. This was the appearance of the likeness of the glory of the LORD."},
|
||||
{"reference": "Ezekiel 18:4", "text": "Behold, all souls are mine; as the soul of the father, so also the soul of the son is mine: the soul that sinneth, it shall die."},
|
||||
{"reference": "Ezekiel 36:26-27", "text": "A new heart also will I give you, and a new spirit will I put within you: and I will take away the stony heart out of your flesh, and I will give you an heart of flesh. And I will put my spirit within you, and cause you to walk in my statutes."},
|
||||
{"reference": "Ezekiel 37:3-4", "text": "And he said unto me, Son of man, can these bones live? And I answered, O Lord GOD, thou knowest. Again he said unto me, Prophesy upon these bones, and say unto them, O ye dry bones, hear the word of the LORD."},
|
||||
{"reference": "Ezekiel 48:35", "text": "It was round about eighteen thousand measures: and the name of the city from that day shall be, The LORD is there."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Ezekiel's Call and Commission", "chapters": "1-3", "description": "Vision of God's glory, eating the scroll"},
|
||||
{"section": "Judgment on Jerusalem", "chapters": "4-24", "description": "Symbolic acts, visions of abominations, glory departs"},
|
||||
{"section": "Oracles Against Nations", "chapters": "25-32", "description": "Ammon, Moab, Edom, Philistia, Tyre, Egypt"},
|
||||
{"section": "Restoration Promises", "chapters": "33-39", "description": "Watchman, shepherds, valley of dry bones, Gog and Magog"},
|
||||
{"section": "The New Temple", "chapters": "40-48", "description": "Temple vision, regulations, river of life, land division"}
|
||||
],
|
||||
"historical_context": "Ezekiel was among the 10,000 exiles deported to Babylon in 597 BC, including King Jehoiachin. He prophesied from Babylon while Jeremiah prophesied in Jerusalem. His ministry spanned 593-571 BC, before and after Jerusalem's final destruction in 586. The exiles struggled with despair and false hope; Ezekiel addressed both. His priestly background shapes his concern for the temple and God's glory.",
|
||||
"literary_style": "Ezekiel is highly visual and symbolic. The prophet performs elaborate sign-acts (lying on his side, shaving his head, packing exile's baggage). His visions are cosmic and surreal (the wheel within a wheel, the valley of bones). The phrase 'they shall know that I am the LORD' appears over 70 times, emphasizing God's self-revelation through judgment and salvation. The book is systematically dated, providing chronological anchors.",
|
||||
"christ_in_book": "The divine figure on the throne (chapter 1) anticipates Christ's glory. The true Shepherd who will tend God's flock (34) is fulfilled in Christ the Good Shepherd. The new heart and spirit promise (36) comes through Christ's redemption and the Spirit's work. The resurrection imagery of dry bones points to Christ's resurrection power. The temple where God dwells (48:35—'The LORD is there') anticipates Christ as God with us.",
|
||||
"practical_application": "Ezekiel emphasizes personal responsibility—each person stands before God for their own choices. The new heart promise encourages us that transformation is God's work, not mere human effort. The dry bones vision assures us that God can bring life from death and hope from despair. The glory of God departing the temple warns against presuming on God's presence while tolerating sin. The river flowing from the temple (47) inspires us with the life-giving presence of God."
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "Ezra",
|
||||
"abbreviation": "Ezra",
|
||||
"testament": "Old Testament",
|
||||
"position": 15,
|
||||
"chapters": 10,
|
||||
"category": "History",
|
||||
"author": "Ezra",
|
||||
"date_written": "c. 450-400 BC",
|
||||
"introduction": "Ezra records the return of Jewish exiles from Babylon and the rebuilding of the temple. After seventy years of captivity, God stirred Cyrus to release the Jews, fulfilling Jeremiah's prophecy. The book divides into two returns: Zerubbabel's group rebuilt the temple (536-516 BC), and Ezra's group restored the law and spiritual life (458 BC). It demonstrates God's faithfulness to His promises and the importance of God's Word in community renewal.",
|
||||
"key_themes": [
|
||||
"Fulfillment of prophetic promises",
|
||||
"God's sovereignty over pagan rulers",
|
||||
"Rebuilding the temple",
|
||||
"The centrality of Scripture",
|
||||
"Spiritual reformation and purity",
|
||||
"Separation from pagan influences"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Ezra 1:1", "text": "Now in the first year of Cyrus king of Persia, that the word of the LORD by the mouth of Jeremiah might be fulfilled, the LORD stirred up the spirit of Cyrus king of Persia."},
|
||||
{"reference": "Ezra 7:10", "text": "For Ezra had prepared his heart to seek the law of the LORD, and to do it, and to teach in Israel statutes and judgments."},
|
||||
{"reference": "Ezra 6:22", "text": "And kept the feast of unleavened bread seven days with joy: for the LORD had made them joyful, and turned the heart of the king of Assyria unto them, to strengthen their hands in the work of the house of God, the God of Israel."},
|
||||
{"reference": "Ezra 9:6", "text": "And said, O my God, I am ashamed and blush to lift up my face to thee, my God: for our iniquities are increased over our head, and our trespass is grown up unto the heavens."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "First Return: Temple Rebuilt", "chapters": "1-6", "description": "Cyrus's decree, returnees listed, altar and temple foundation, opposition, completion"},
|
||||
{"section": "Second Return: People Restored", "chapters": "7-10", "description": "Ezra's journey, his commission, the mixed marriage crisis"}
|
||||
],
|
||||
"historical_context": "Ezra spans about 80 years (538-458 BC) during the Persian Empire's dominance. Cyrus's policy of allowing exiled peoples to return home served Persian interests by creating loyal subjects. The Jews faced opposition from local populations who had settled during their absence. The temple completion (516 BC) and Ezra's reforms (458 BC) were crucial for reestablishing Jewish identity and practice.",
|
||||
"literary_style": "Ezra includes Persian imperial documents in Aramaic (the international language) alongside Hebrew narrative. The book alternates between third-person narration and Ezra's first-person account. Official lists, letters, and genealogies provide historical documentation. Ezra's prayer of confession (chapter 9) is a model of intercessory prayer that takes corporate sin seriously.",
|
||||
"christ_in_book": "The return from exile pictures spiritual redemption and the new exodus Christ accomplishes. The rebuilt temple points to Christ as God's dwelling with humanity. Ezra as priest and scribe who taught God's Word foreshadows Christ's prophetic ministry. The separation from foreign influences anticipates the church's call to holiness. God's faithfulness to restore His people despite their failures reflects the gospel's promise.",
|
||||
"practical_application": "Ezra teaches that God fulfills His promises in His time and uses unlikely instruments (pagan kings) to accomplish His purposes. It shows the vital connection between God's Word and spiritual renewal—Ezra's personal devotion to Scripture enabled his public ministry. The book addresses the difficulty of maintaining distinctiveness in a hostile environment. Ezra's model of study, practice, and teaching provides a pattern for spiritual leadership."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Galatians",
|
||||
"abbreviation": "Gal",
|
||||
"testament": "New Testament",
|
||||
"position": 48,
|
||||
"chapters": 6,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 49-55",
|
||||
"introduction": "Galatians is Paul's passionate defense of the gospel of grace. False teachers were requiring Gentile believers to be circumcised and keep the Mosaic law. Paul responds with his most forceful letter, defending both his apostleship and the truth that justification is by faith alone, not by works of the law. The Reformation's watchword—sola fide (faith alone)—echoes Galatians. Liberty in Christ must never be compromised.",
|
||||
"key_themes": [
|
||||
"Justification by faith alone",
|
||||
"The truth of the gospel defended",
|
||||
"Freedom from the law",
|
||||
"The fruit of the Spirit versus works of the flesh",
|
||||
"The sufficiency of Christ",
|
||||
"Living by the Spirit"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Galatians 2:16", "text": "Knowing that a man is not justified by the works of the law, but by the faith of Jesus Christ, even we have believed in Jesus Christ, that we might be justified by the faith of Christ, and not by the works of the law: for by the works of the law shall no flesh be justified."},
|
||||
{"reference": "Galatians 2:20", "text": "I am crucified with Christ: nevertheless I live; yet not I, but Christ liveth in me: and the life which I now live in the flesh I live by the faith of the Son of God, who loved me, and gave himself for me."},
|
||||
{"reference": "Galatians 3:28", "text": "There is neither Jew nor Greek, there is neither bond nor free, there is neither male nor female: for ye are all one in Christ Jesus."},
|
||||
{"reference": "Galatians 5:1", "text": "Stand fast therefore in the liberty wherewith Christ hath made us free, and be not entangled again with the yoke of bondage."},
|
||||
{"reference": "Galatians 5:22-23", "text": "But the fruit of the Spirit is love, joy, peace, longsuffering, gentleness, goodness, faith, Meekness, temperance: against such there is no law."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction", "chapters": "1:1-10", "description": "No other gospel"},
|
||||
{"section": "Paul's Gospel Defended", "chapters": "1:11-2:21", "description": "Autobiographical defense, confrontation with Peter"},
|
||||
{"section": "Paul's Gospel Explained", "chapters": "3-4", "description": "Faith versus law, Abraham's example, adoption as sons"},
|
||||
{"section": "Paul's Gospel Applied", "chapters": "5-6", "description": "Freedom, Spirit versus flesh, bearing burdens"}
|
||||
],
|
||||
"historical_context": "The Galatian churches were founded on Paul's first missionary journey. After his departure, Judaizers arrived teaching that faith in Christ was not enough—Gentiles must also be circumcised and follow Jewish law. This was not a secondary issue but a fundamental perversion of the gospel. The Jerusalem Council (Acts 15) addressed the same question. Galatians may be Paul's earliest letter.",
|
||||
"literary_style": "Galatians is urgent, even fierce. The letter lacks Paul's typical thanksgiving—he moves directly to rebuke ('I marvel that ye are so soon removed'). The argument alternates between personal narrative, scriptural interpretation, and ethical exhortation. Paul's emotions surface—astonishment, anguish ('O foolish Galatians!'), even sarcasm about the circumcisers. The Spirit-flesh contrast in chapter 5 is foundational for Christian ethics.",
|
||||
"christ_in_book": "Christ gave Himself for our sins to deliver us from this evil age. He is the seed of Abraham in whom all nations are blessed. He redeems those under the law that we might receive adoption. We are crucified with Christ—He lives in us. He has set us free. The truth that 'a man is not justified by the works of the law, but by the faith of Jesus Christ' puts Christ at the center of salvation.",
|
||||
"practical_application": "Galatians warns against any addition to faith in Christ for salvation—whether religious rituals, moral achievement, or cultural conformity. Freedom in Christ is precious and easily lost. Yet freedom is not license; we are called to serve one another through love. Walking by the Spirit produces His fruit and overcomes the flesh's desires. The letter calls us to examine whether we have drifted from grace back to performance-based religion."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Genesis",
|
||||
"abbreviation": "Gen",
|
||||
"testament": "Old Testament",
|
||||
"position": 1,
|
||||
"chapters": 50,
|
||||
"category": "Law (Torah/Pentateuch)",
|
||||
"author": "Moses",
|
||||
"date_written": "c. 1446-1406 BC",
|
||||
"introduction": "Genesis, meaning 'beginning' or 'origin,' is the foundational book of the Bible. It answers life's most fundamental questions: Where did we come from? Why are we here? What went wrong with the world? Genesis establishes God as the sovereign Creator of all things and introduces His plan to redeem humanity through a chosen people. The book spans more time than all other biblical books combined, covering creation to the death of Joseph—a period of at least 2,300 years.",
|
||||
"key_themes": [
|
||||
"Creation and the sovereignty of God",
|
||||
"The fall of humanity and the origin of sin",
|
||||
"God's covenant promises",
|
||||
"The beginnings of the chosen people (Israel)",
|
||||
"Divine providence and human responsibility",
|
||||
"Family dynamics and God's redemptive work through flawed people"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Genesis 1:1", "text": "In the beginning God created the heaven and the earth."},
|
||||
{"reference": "Genesis 1:27", "text": "So God created man in his own image, in the image of God created he him; male and female created he them."},
|
||||
{"reference": "Genesis 3:15", "text": "And I will put enmity between thee and the woman, and between thy seed and her seed; it shall bruise thy head, and thou shalt bruise his heel."},
|
||||
{"reference": "Genesis 12:2-3", "text": "And I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing: And I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed."},
|
||||
{"reference": "Genesis 15:6", "text": "And he believed in the LORD; and he counted it to him for righteousness."},
|
||||
{"reference": "Genesis 50:20", "text": "But as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Primeval History", "chapters": "1-11", "description": "Creation, Fall, Flood, and the Tower of Babel—the origin of the world and nations"},
|
||||
{"section": "Abraham's Story", "chapters": "12-25", "description": "God's covenant with Abraham, the father of faith"},
|
||||
{"section": "Isaac's Story", "chapters": "25-27", "description": "The son of promise and the continuation of the covenant"},
|
||||
{"section": "Jacob's Story", "chapters": "27-36", "description": "The supplanter becomes Israel, father of the twelve tribes"},
|
||||
{"section": "Joseph's Story", "chapters": "37-50", "description": "Betrayal, slavery, and exaltation in Egypt—God's providence displayed"}
|
||||
],
|
||||
"historical_context": "Genesis was written during Israel's wilderness wanderings after the Exodus from Egypt. Moses wrote to help the Israelites understand their identity as God's chosen people and the origins of the promises God had made to their ancestors. The book provides essential background for understanding God's covenant relationship with Israel and His plan for all humanity.",
|
||||
"literary_style": "Genesis employs narrative prose with genealogies, poetry (such as the Song of Lamech and various blessings), and theological commentary. The book is structured around the Hebrew word 'toledot' (generations/account of), which appears eleven times and organizes the material into distinct sections.",
|
||||
"christ_in_book": "Christ is foreshadowed throughout Genesis: in the 'seed of the woman' who will crush the serpent's head (3:15), in Abel's acceptable sacrifice, in the ark of Noah, in Melchizedek the priest-king, in Isaac as the beloved son offered on Mount Moriah, in Joseph the beloved son rejected by his brothers yet becoming their savior, and in the scarlet cord theme of redemption.",
|
||||
"practical_application": "Genesis teaches us about our identity as image-bearers of God, the reality and consequences of sin, the faithfulness of God to His promises despite human failure, and the sovereignty of God working all things for good. It reminds us that God specializes in new beginnings and that His redemptive purposes cannot be thwarted."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Habakkuk",
|
||||
"abbreviation": "Hab",
|
||||
"testament": "Old Testament",
|
||||
"position": 35,
|
||||
"chapters": 3,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Habakkuk",
|
||||
"date_written": "c. 608-598 BC",
|
||||
"introduction": "Habakkuk is unique among the prophets—rather than speaking God's message to the people, he voices the people's questions to God. Why does God allow injustice among His people? Why would He use wicked Babylon as His instrument of judgment? The prophet's journey from complaint to worship models faithful wrestling with hard questions. His conclusion—'the just shall live by faith'—becomes foundational for Paul's theology of justification.",
|
||||
"key_themes": [
|
||||
"Wrestling with God's justice and providence",
|
||||
"Faith amid unanswered questions",
|
||||
"God's sovereignty over evil nations",
|
||||
"The just shall live by faith",
|
||||
"God's glory filling the earth",
|
||||
"Joy in God despite circumstances"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Habakkuk 1:2", "text": "O LORD, how long shall I cry, and thou wilt not hear! even cry out unto thee of violence, and thou wilt not save!"},
|
||||
{"reference": "Habakkuk 1:13", "text": "Thou art of purer eyes than to behold evil, and canst not look on iniquity: wherefore lookest thou upon them that deal treacherously, and holdest thy tongue when the wicked devoureth the man that is more righteous than he?"},
|
||||
{"reference": "Habakkuk 2:4", "text": "Behold, his soul which is lifted up is not upright in him: but the just shall live by his faith."},
|
||||
{"reference": "Habakkuk 2:14", "text": "For the earth shall be filled with the knowledge of the glory of the LORD, as the waters cover the sea."},
|
||||
{"reference": "Habakkuk 3:17-18", "text": "Although the fig tree shall not blossom, neither shall fruit be in the vines... Yet I will rejoice in the LORD, I will joy in the God of my salvation."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "First Complaint and Response", "chapters": "1:1-11", "description": "Why does God tolerate injustice? Answer: Babylon is coming"},
|
||||
{"section": "Second Complaint and Response", "chapters": "1:12-2:20", "description": "Why use wicked Babylon? Answer: Babylon will also be judged"},
|
||||
{"section": "Habakkuk's Prayer", "chapters": "3", "description": "Theophany, fear, and rejoicing in God"}
|
||||
],
|
||||
"historical_context": "Habakkuk prophesied as Babylon was rising to power, likely during Jehoiakim's reign (608-598 BC). Judah was corrupt, justice was perverted, and the righteous were oppressed. Babylon, under Nebuchadnezzar, would soon invade and ultimately destroy Jerusalem (586 BC). Habakkuk struggled with both the internal injustice and God's use of an even more wicked nation as His instrument.",
|
||||
"literary_style": "Habakkuk takes the form of a dialogue—the prophet asks, God answers, the prophet responds. This structure makes it accessible for readers with similar questions. The five 'woes' against Babylon (2:6-20) are structured as taunts the nations will eventually sing over fallen Babylon. Chapter 3 is a powerful psalm (note the musical notation) describing God's appearance in language echoing the Exodus.",
|
||||
"christ_in_book": "The declaration 'the just shall live by faith' is quoted three times in the New Testament (Romans 1:17; Galatians 3:11; Hebrews 10:38) as the foundation of justification by faith in Christ. The vision that awaits fulfillment but 'will surely come' (2:3) is applied to Christ's return in Hebrews 10:37. Habakkuk's rejoicing despite loss models the faith that Christ's suffering and victory make possible.",
|
||||
"practical_application": "Habakkuk gives us permission to question God honestly. It shows that faith is not the absence of doubt but trust that persists through doubt. The prophet's journey from 'how long?' to 'yet I will rejoice' maps the path for sufferers. The book teaches that God may use strange instruments in His providence but that His justice will ultimately prevail. Living by faith means trusting God's character when we cannot understand His ways."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Haggai",
|
||||
"abbreviation": "Hag",
|
||||
"testament": "Old Testament",
|
||||
"position": 37,
|
||||
"chapters": 2,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Haggai",
|
||||
"date_written": "c. 520 BC",
|
||||
"introduction": "Haggai is the first post-exilic prophet, calling the returned exiles to rebuild the temple they had neglected for sixteen years. His message is simple and urgent: consider your ways—you have neglected God's house while pursuing your own comfort, and it has left you unsatisfied. When the people respond in obedience, God promises His presence and future glory that will surpass Solomon's temple. Small beginnings can have magnificent endings.",
|
||||
"key_themes": [
|
||||
"Priorities—God's house before our own",
|
||||
"The connection between obedience and blessing",
|
||||
"The presence of God with His people",
|
||||
"Future glory exceeding present limitations",
|
||||
"The shaking of nations and God's kingdom",
|
||||
"Encouragement for discouraged workers"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Haggai 1:4", "text": "Is it time for you, O ye, to dwell in your cieled houses, and this house lie waste?"},
|
||||
{"reference": "Haggai 1:7-8", "text": "Thus saith the LORD of hosts; Consider your ways. Go up to the mountain, and bring wood, and build the house; and I will take pleasure in it, and I will be glorified, saith the LORD."},
|
||||
{"reference": "Haggai 2:4-5", "text": "Yet now be strong, O Zerubbabel, saith the LORD; and be strong, O Joshua, son of Josedech, the high priest; and be strong, all ye people of the land, saith the LORD, and work: for I am with you, saith the LORD of hosts... my spirit remaineth among you: fear ye not."},
|
||||
{"reference": "Haggai 2:9", "text": "The glory of this latter house shall be greater than of the former, saith the LORD of hosts: and in this place will I give peace, saith the LORD of hosts."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "First Message: Rebuke", "chapters": "1:1-11", "description": "Call to consider misplaced priorities"},
|
||||
{"section": "The People's Response", "chapters": "1:12-15", "description": "Obedience and work begins"},
|
||||
{"section": "Second Message: Encouragement", "chapters": "2:1-9", "description": "Be strong, greater glory coming"},
|
||||
{"section": "Third Message: Blessing", "chapters": "2:10-19", "description": "Holiness and contamination, blessing promised"},
|
||||
{"section": "Fourth Message: Zerubbabel", "chapters": "2:20-23", "description": "God's signet ring, shaking of nations"}
|
||||
],
|
||||
"historical_context": "The exiles had returned from Babylon in 538 BC and laid the temple foundation in 536 BC. Opposition stopped the work for sixteen years. In 520 BC, Haggai and Zechariah stirred up the people to resume building. The Persian king Darius I was consolidating power. The temple was completed in 516 BC—seventy years after its destruction, fulfilling Jeremiah's prophecy.",
|
||||
"literary_style": "Haggai is precisely dated (four messages in four months), giving it a journalistic quality. The rhetorical question 'Consider your ways' (literally 'set your heart on your roads') recurs. The prophet's direct, practical style contrasts with the symbolic visions of his contemporary Zechariah. The phrase 'Thus saith the LORD of hosts' appears 26 times in just 38 verses, emphasizing divine authority.",
|
||||
"christ_in_book": "The promise that the latter house's glory will exceed the former finds fulfillment when Christ enters the temple—bringing the very presence of God in human flesh. The 'shaking of nations' anticipates the upheaval surrounding Christ's coming and ultimate return. Zerubbabel as God's 'signet ring' suggests royal authority and points to his descendant Jesus, the true King.",
|
||||
"practical_application": "Haggai exposes how easily we prioritize our comfort over God's purposes. The unfulfilling cycle—working hard yet never satisfied—results from misplaced priorities. When we put God first, blessing follows. The book encourages those doing God's work with small resources: be strong, for God is with you, and greater things are coming. It reminds us that present faithfulness in small things leads to future glory."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Hebrews",
|
||||
"abbreviation": "Heb",
|
||||
"testament": "New Testament",
|
||||
"position": 58,
|
||||
"chapters": 13,
|
||||
"category": "General Epistles",
|
||||
"author": "Unknown (possibly Paul, Apollos, Barnabas, or others)",
|
||||
"date_written": "c. AD 64-68",
|
||||
"introduction": "Hebrews demonstrates the absolute supremacy of Christ over every aspect of Old Testament religion. To believers tempted to return to Judaism under persecution, the author shows that Jesus is superior to angels, Moses, Joshua, and the Levitical priesthood. His sacrifice is once-for-all, establishing a new and better covenant. Going back is impossible—Christ is the fulfillment to which all Scripture pointed. The letter calls for persevering faith.",
|
||||
"key_themes": [
|
||||
"The supremacy of Christ",
|
||||
"Christ's superior priesthood (Melchizedek order)",
|
||||
"The new covenant and better promises",
|
||||
"The once-for-all sacrifice for sin",
|
||||
"Faith and perseverance",
|
||||
"Warning against falling away"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Hebrews 1:1-3", "text": "God, who at sundry times and in divers manners spake in time past unto the fathers by the prophets, Hath in these last days spoken unto us by his Son, whom he hath appointed heir of all things, by whom also he made the worlds; Who being the brightness of his glory, and the express image of his person, and upholding all things by the word of his power, when he had by himself purged our sins, sat down on the right hand of the Majesty on high."},
|
||||
{"reference": "Hebrews 4:12", "text": "For the word of God is quick, and powerful, and sharper than any twoedged sword, piercing even to the dividing asunder of soul and spirit, and of the joints and marrow, and is a discerner of the thoughts and intents of the heart."},
|
||||
{"reference": "Hebrews 4:15-16", "text": "For we have not an high priest which cannot be touched with the feeling of our infirmities; but was in all points tempted like as we are, yet without sin. Let us therefore come boldly unto the throne of grace, that we may obtain mercy, and find grace to help in time of need."},
|
||||
{"reference": "Hebrews 11:1", "text": "Now faith is the substance of things hoped for, the evidence of things not seen."},
|
||||
{"reference": "Hebrews 12:1-2", "text": "Wherefore seeing we also are compassed about with so great a cloud of witnesses, let us lay aside every weight, and the sin which doth so easily beset us, and let us run with patience the race that is set before us, Looking unto Jesus the author and finisher of our faith."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Christ Superior to Prophets and Angels", "chapters": "1:1-2:18", "description": "Final revelation, above angels, incarnation's purpose"},
|
||||
{"section": "Christ Superior to Moses and Joshua", "chapters": "3:1-4:13", "description": "Greater than Moses, entering God's rest"},
|
||||
{"section": "Christ Superior High Priest", "chapters": "4:14-7:28", "description": "Sympathetic priest, Melchizedek order"},
|
||||
{"section": "Christ Superior Ministry and Covenant", "chapters": "8-10", "description": "Better covenant, once-for-all sacrifice"},
|
||||
{"section": "Faith and Perseverance", "chapters": "11-12", "description": "Hall of faith, running the race"},
|
||||
{"section": "Practical Instructions", "chapters": "13", "description": "Love, conduct, final exhortations"}
|
||||
],
|
||||
"historical_context": "The recipients were Jewish Christians facing persecution and tempted to abandon faith in Christ for the relative safety of Judaism (a legally recognized religion in Rome). The letter may have been written before the temple's destruction in AD 70, as the sacrificial system is discussed as ongoing. The recipients had endured earlier persecution but were growing weary.",
|
||||
"literary_style": "Hebrews is sophisticated Greek, more oratorical than epistolary. The author calls it a 'word of exhortation' (13:22). Exposition of Old Testament texts alternates with pastoral warnings. The five warning passages (2:1-4; 3:12-4:13; 5:11-6:12; 10:26-39; 12:25-29) punctuate the argument. The faith chapter (11) is a rhetorical tour de force, building momentum through repetition.",
|
||||
"christ_in_book": "Hebrews presents the most complete Christology in Scripture. Christ is God's final Word, the radiance of His glory, exact imprint of His nature, creator, sustainer, and purifier of sins. He is better than angels, faithful as Son over God's house. He is the great high priest who sympathizes with our weaknesses, offering Himself once for all. He is the mediator of a new covenant, seated at God's right hand.",
|
||||
"practical_application": "Hebrews calls us to hold fast our confession and draw near to God through Christ. The warnings are sobering—neglecting so great a salvation has consequences. Faith perseveres through trials, looking to Jesus as the author and perfecter. We approach God's throne with confidence because our high priest understands our struggles. The letter encourages weary believers to run the race with endurance, fixing our eyes on Jesus."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Hosea",
|
||||
"abbreviation": "Hos",
|
||||
"testament": "Old Testament",
|
||||
"position": 28,
|
||||
"chapters": 14,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Hosea",
|
||||
"date_written": "c. 755-710 BC",
|
||||
"introduction": "Hosea is a love story and a tragedy. God commands the prophet to marry an unfaithful woman as a living parable of Israel's spiritual adultery. Despite Gomer's repeated unfaithfulness, Hosea pursues and redeems her—just as God pursues faithless Israel. The book exposes Israel's idolatry while revealing the depth of God's wounded love. It demonstrates that covenant love persists even when spurned.",
|
||||
"key_themes": [
|
||||
"God's covenant love (hesed) for His people",
|
||||
"Israel's spiritual adultery (idolatry)",
|
||||
"Judgment as the consequence of unfaithfulness",
|
||||
"God's relentless pursuing love",
|
||||
"The call to repentance and return",
|
||||
"Restoration through grace"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Hosea 2:19-20", "text": "And I will betroth thee unto me for ever; yea, I will betroth thee unto me in righteousness, and in judgment, and in lovingkindness, and in mercies. I will even betroth thee unto me in faithfulness: and thou shalt know the LORD."},
|
||||
{"reference": "Hosea 4:6", "text": "My people are destroyed for lack of knowledge: because thou hast rejected knowledge, I will also reject thee."},
|
||||
{"reference": "Hosea 6:6", "text": "For I desired mercy, and not sacrifice; and the knowledge of God more than burnt offerings."},
|
||||
{"reference": "Hosea 11:8", "text": "How shall I give thee up, Ephraim? how shall I deliver thee, Israel?... mine heart is turned within me, my repentings are kindled together."},
|
||||
{"reference": "Hosea 14:4", "text": "I will heal their backsliding, I will love them freely: for mine anger is turned away from him."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Hosea's Marriage", "chapters": "1-3", "description": "Marriage to Gomer, children's symbolic names, redemption"},
|
||||
{"section": "Israel's Unfaithfulness", "chapters": "4-7", "description": "Indictments against priests, people, and leaders"},
|
||||
{"section": "Judgment Announced", "chapters": "8-10", "description": "Reaping the whirlwind, captivity coming"},
|
||||
{"section": "God's Love Persists", "chapters": "11-14", "description": "Father's love, call to return, promise of restoration"}
|
||||
],
|
||||
"historical_context": "Hosea prophesied in the northern kingdom during its final, turbulent decades (roughly 755-710 BC). It was a time of prosperity under Jeroboam II, followed by rapid decline—six kings in 25 years, four by assassination. Baal worship was rampant, often syncretized with worship of the LORD. Hosea witnessed the Assyrian conquest (722 BC) that ended the northern kingdom.",
|
||||
"literary_style": "Hosea's style is passionate and sometimes abrupt, reflecting emotional intensity. The imagery is domestic and agricultural—marriage, childbirth, farming, baking. God is portrayed as husband, father, and shepherd. Wordplay and double meanings abound, including the symbolic names of Hosea's children (Jezreel, Lo-Ruhamah, Lo-Ammi). The book alternates between accusation and tender appeal.",
|
||||
"christ_in_book": "Hosea foreshadows Christ as the faithful husband who redeems an unfaithful bride at great cost. Matthew 2:15 applies Hosea 11:1 ('Out of Egypt have I called my son') to Christ. The declaration 'I will ransom them from the power of the grave' (13:14) anticipates resurrection. The new covenant theme—knowing the LORD intimately—is fulfilled in Christ. Hosea's children's names reversed ('My people,' 'Mercy') point to Gentile inclusion (Romans 9:25-26).",
|
||||
"practical_application": "Hosea reveals how seriously God takes spiritual unfaithfulness—idolatry is adultery against our covenant Lord. Yet it also shows that no amount of unfaithfulness exhausts God's pursuing love. The book calls us to genuine knowledge of God, not mere religious ritual ('mercy, not sacrifice'). It warns that blessing can lead to forgetfulness of God. Hosea's redemption of Gomer pictures the gospel—bought back at a price to be His alone."
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "Isaiah",
|
||||
"abbreviation": "Isa",
|
||||
"testament": "Old Testament",
|
||||
"position": 23,
|
||||
"chapters": 66,
|
||||
"category": "Major Prophets",
|
||||
"author": "Isaiah son of Amoz",
|
||||
"date_written": "c. 740-680 BC",
|
||||
"introduction": "Isaiah is the Bible's most comprehensive prophetic book, spanning judgment and hope, history and eschatology. Writing during Judah's crisis with Assyria, Isaiah proclaimed that God is the 'Holy One of Israel' who judges sin but also provides salvation. The book contains the Bible's clearest Old Testament prophecies of the Messiah—His virgin birth, suffering, and coming kingdom. Isaiah is quoted more than any other prophet in the New Testament.",
|
||||
"key_themes": [
|
||||
"The holiness of God (the Holy One of Israel)",
|
||||
"Judgment for sin and hope for restoration",
|
||||
"The remnant who will be saved",
|
||||
"The Servant of the LORD",
|
||||
"The coming Messiah and His kingdom",
|
||||
"Trust in God versus worldly alliances"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Isaiah 1:18", "text": "Come now, and let us reason together, saith the LORD: though your sins be as scarlet, they shall be as white as snow; though they be red like crimson, they shall be as wool."},
|
||||
{"reference": "Isaiah 6:3", "text": "And one cried unto another, and said, Holy, holy, holy, is the LORD of hosts: the whole earth is full of his glory."},
|
||||
{"reference": "Isaiah 7:14", "text": "Therefore the Lord himself shall give you a sign; Behold, a virgin shall conceive, and bear a son, and shall call his name Immanuel."},
|
||||
{"reference": "Isaiah 9:6", "text": "For unto us a child is born, unto us a son is given: and the government shall be upon his shoulder: and his name shall be called Wonderful, Counsellor, The mighty God, The everlasting Father, The Prince of Peace."},
|
||||
{"reference": "Isaiah 40:31", "text": "But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint."},
|
||||
{"reference": "Isaiah 53:5", "text": "But he was wounded for our transgressions, he was bruised for our iniquities: the chastisement of our peace was upon him; and with his stripes we are healed."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Judgment on Judah and Nations", "chapters": "1-12", "description": "Indictments, Immanuel prophecies, messianic hope"},
|
||||
{"section": "Oracles Against Nations", "chapters": "13-23", "description": "Babylon, Assyria, Philistia, Moab, and others"},
|
||||
{"section": "The Little Apocalypse", "chapters": "24-27", "description": "Worldwide judgment and ultimate salvation"},
|
||||
{"section": "Woes and Hezekiah's Crisis", "chapters": "28-39", "description": "Warnings, Assyrian threat, Hezekiah's illness"},
|
||||
{"section": "Comfort and Restoration", "chapters": "40-48", "description": "God's sovereignty, Cyrus, return from exile"},
|
||||
{"section": "The Servant and Redemption", "chapters": "49-55", "description": "Servant Songs, substitutionary atonement"},
|
||||
{"section": "Future Glory", "chapters": "56-66", "description": "True worship, new heavens and earth"}
|
||||
],
|
||||
"historical_context": "Isaiah prophesied during the reigns of Uzziah, Jotham, Ahaz, and Hezekiah (roughly 740-680 BC). The northern kingdom fell to Assyria in 722 BC. Judah faced Assyrian pressure, and Ahaz foolishly sought alliance with Assyria while Hezekiah trusted God during Sennacherib's siege. Isaiah also foresaw Babylon's future role and the eventual restoration under Cyrus (named 150 years before his birth).",
|
||||
"literary_style": "Isaiah is Hebrew poetry and prose of the highest literary quality. The poetry features vivid imagery, wordplay, and parallelism. Key metaphors include vineyard, highway, wilderness blooming, and streams in the desert. The Servant Songs (42, 49, 50, 52-53) are particularly striking. The book's 66 chapters have been compared to the Bible's 66 books—39 in the first section (like the OT), 27 in the second (like the NT).",
|
||||
"christ_in_book": "Isaiah is the 'fifth Gospel' for its messianic prophecies. The virgin birth (7:14), the child who is God (9:6), the shoot from Jesse's stump (11:1), the Servant who dies for sins (52:13-53:12), the anointed one proclaiming good news (61:1-2)—all find fulfillment in Jesus. Christ inaugurated His ministry by reading Isaiah 61 in Nazareth. The Ethiopian eunuch was reading Isaiah 53 when Philip explained the gospel.",
|
||||
"practical_application": "Isaiah calls us to trust God alone rather than human schemes and alliances. It reveals God's holiness that exposes our sin and His grace that cleanses it. The book comforts those in distress with promises of restoration while warning the complacent of coming judgment. Isaiah's vision of the future kingdom motivates present faithfulness. The Servant Songs invite us to embrace the cross before the crown, suffering before glory."
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "James",
|
||||
"abbreviation": "Jas",
|
||||
"testament": "New Testament",
|
||||
"position": 59,
|
||||
"chapters": 5,
|
||||
"category": "General Epistles",
|
||||
"author": "James, the brother of Jesus",
|
||||
"date_written": "c. AD 45-49",
|
||||
"introduction": "James is practical Christianity—faith that works. Often called the 'Proverbs of the New Testament,' the letter addresses trials, temptation, partiality, the tongue, worldliness, and prayer. James insists that genuine faith produces action; faith without works is dead. The letter has sometimes been contrasted with Paul, but they address different problems: Paul opposed works-righteousness; James opposed faith that remained theoretical. Both agree that true faith transforms.",
|
||||
"key_themes": [
|
||||
"Faith that produces works",
|
||||
"Trials and perseverance",
|
||||
"Controlling the tongue",
|
||||
"Worldliness versus godliness",
|
||||
"Rich and poor in the church",
|
||||
"The prayer of faith"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "James 1:2-4", "text": "My brethren, count it all joy when ye fall into divers temptations; Knowing this, that the trying of your faith worketh patience. But let patience have her perfect work, that ye may be perfect and entire, wanting nothing."},
|
||||
{"reference": "James 1:22", "text": "But be ye doers of the word, and not hearers only, deceiving your own selves."},
|
||||
{"reference": "James 2:17", "text": "Even so faith, if it hath not works, is dead, being alone."},
|
||||
{"reference": "James 3:8-10", "text": "But the tongue can no man tame; it is an unruly evil, full of deadly poison. Therewith bless we God, even the Father; and therewith curse we men, which are made after the similitude of God. Out of the same mouth proceedeth blessing and cursing. My brethren, these things ought not so to be."},
|
||||
{"reference": "James 4:7-8", "text": "Submit yourselves therefore to God. Resist the devil, and he will flee from you. Draw nigh to God, and he will draw nigh to you."},
|
||||
{"reference": "James 5:16", "text": "Confess your faults one to another, and pray one for another, that ye may be healed. The effectual fervent prayer of a righteous man availeth much."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Trials and Temptations", "chapters": "1:1-18", "description": "Joy in trials, wisdom, endurance"},
|
||||
{"section": "Hearing and Doing", "chapters": "1:19-27", "description": "Be doers, not just hearers"},
|
||||
{"section": "Partiality Condemned", "chapters": "2:1-13", "description": "The royal law of love"},
|
||||
{"section": "Faith and Works", "chapters": "2:14-26", "description": "Faith without works is dead"},
|
||||
{"section": "The Tongue", "chapters": "3:1-12", "description": "The power and danger of speech"},
|
||||
{"section": "True Wisdom", "chapters": "3:13-18", "description": "Heavenly versus earthly wisdom"},
|
||||
{"section": "Worldliness and Pride", "chapters": "4", "description": "Friendship with the world, judging others"},
|
||||
{"section": "Various Instructions", "chapters": "5", "description": "Patience, oaths, prayer, restoration"}
|
||||
],
|
||||
"historical_context": "James was likely the first New Testament book written, around AD 45-49, before the Jerusalem Council. The author is James, Jesus' half-brother, who became a leader of the Jerusalem church. He writes to Jewish Christians scattered throughout the Roman Empire (the 'twelve tribes in the Dispersion'). The practical, ethical focus reflects Jewish wisdom tradition and shows strong echoes of Jesus' Sermon on the Mount.",
|
||||
"literary_style": "James resembles Jewish wisdom literature more than typical letters. It is a collection of teachings on various topics, loosely connected by keywords and themes. The style is direct, even blunt, with vivid illustrations (mirror, bridle, rudder, fire, spring, fig tree). James asks rhetorical questions and anticipates objections. The teaching echoes Jesus' words frequently, suggesting firsthand familiarity.",
|
||||
"christ_in_book": "James mentions Jesus explicitly only twice (1:1; 2:1), but Christ's teaching permeates the letter. The echoes of the Sermon on the Mount are extensive. Jesus is 'Lord of glory.' The wisdom James commends reflects the wisdom Jesus embodied. The royal law to love neighbor fulfills Christ's summary of the law. The coming of the Lord frames patient endurance.",
|
||||
"practical_application": "James asks hard questions: Does my faith produce action? Can I control my tongue? Do I favor the rich over the poor? Am I a friend of the world? The letter refuses to let us divorce belief from behavior. Trials develop maturity; wisdom is available for the asking. The tongue must be tamed. Friendship with the world is enmity with God. Prayer, confession, and caring for one another characterize authentic faith. Faith without works is dead."
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "Jeremiah",
|
||||
"abbreviation": "Jer",
|
||||
"testament": "Old Testament",
|
||||
"position": 24,
|
||||
"chapters": 52,
|
||||
"category": "Major Prophets",
|
||||
"author": "Jeremiah (with Baruch as scribe)",
|
||||
"date_written": "c. 627-580 BC",
|
||||
"introduction": "Jeremiah, the 'weeping prophet,' ministered during Judah's final tragic decades before Babylon destroyed Jerusalem. Called as a young man, he preached repentance for forty years to a nation that would not listen. His message was deeply unpopular—submit to Babylon as God's judgment—and brought him imprisonment, beatings, and near death. Yet through the tears, Jeremiah proclaimed hope: a new covenant written on hearts, and restoration after exile.",
|
||||
"key_themes": [
|
||||
"The certainty of judgment for persistent sin",
|
||||
"The call to repentance and true religion",
|
||||
"The new covenant promise",
|
||||
"Suffering in faithful ministry",
|
||||
"God's sovereignty over nations",
|
||||
"Hope beyond judgment"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Jeremiah 1:5", "text": "Before I formed thee in the belly I knew thee; and before thou camest forth out of the womb I sanctified thee, and I ordained thee a prophet unto the nations."},
|
||||
{"reference": "Jeremiah 17:9", "text": "The heart is deceitful above all things, and desperately wicked: who can know it?"},
|
||||
{"reference": "Jeremiah 29:11", "text": "For I know the thoughts that I think toward you, saith the LORD, thoughts of peace, and not of evil, to give you an expected end."},
|
||||
{"reference": "Jeremiah 31:31-33", "text": "Behold, the days come, saith the LORD, that I will make a new covenant with the house of Israel... I will put my law in their inward parts, and write it in their hearts; and will be their God, and they shall be my people."},
|
||||
{"reference": "Jeremiah 33:3", "text": "Call unto me, and I will answer thee, and shew thee great and mighty things, which thou knowest not."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Jeremiah's Call and Early Ministry", "chapters": "1-6", "description": "Commission, indictments against Judah"},
|
||||
{"section": "Temple Sermon and Conflicts", "chapters": "7-20", "description": "False trust exposed, symbolic acts, persecution"},
|
||||
{"section": "Oracles Against Kings and Prophets", "chapters": "21-25", "description": "Messages to rulers, seventy-year exile predicted"},
|
||||
{"section": "Biographical Narratives", "chapters": "26-29", "description": "Temple sermon response, conflict with false prophets"},
|
||||
{"section": "Book of Consolation", "chapters": "30-33", "description": "Restoration promises, new covenant"},
|
||||
{"section": "Fall of Jerusalem", "chapters": "34-45", "description": "Final events, Gedaliah, flight to Egypt"},
|
||||
{"section": "Oracles Against Nations", "chapters": "46-51", "description": "Egypt, Philistia, Moab, Babylon, and others"},
|
||||
{"section": "Appendix", "chapters": "52", "description": "Jerusalem's fall recounted"}
|
||||
],
|
||||
"historical_context": "Jeremiah prophesied from 627 to after 586 BC, under Judah's last five kings. The great powers shifted—Assyria fell to Babylon, Egypt vied for influence. Judah foolishly rebelled against Babylon despite Jeremiah's warnings. Jerusalem was besieged three times (605, 597, 586 BC), with deportations each time. After Jerusalem's destruction, Jeremiah was taken against his will to Egypt, where he likely died.",
|
||||
"literary_style": "Jeremiah combines poetry (oracles) with prose (narrative, sermons). The book is not arranged chronologically, creating a sometimes disorienting effect that mirrors the chaos of Judah's final years. Jeremiah's 'confessions' (11:18-23; 12:1-6; 15:10-21; 17:14-18; 18:18-23; 20:7-18) provide rare glimpses into a prophet's inner struggle. The new covenant passage (31:31-34) is the longest Old Testament passage quoted in the New (Hebrews 8).",
|
||||
"christ_in_book": "Jeremiah's suffering anticipates Christ—rejected by his own, persecuted for speaking truth, weeping over Jerusalem. The new covenant (31:31-34) is explicitly fulfilled in Christ (Hebrews 8-10). Jesus is the Righteous Branch (23:5-6). The potter and clay imagery (18) speaks to God's sovereignty in salvation. Jeremiah's purchase of a field during siege (32) models faith in God's future, as Christ purchased the church through His death.",
|
||||
"practical_application": "Jeremiah shows that faithful ministry may appear to fail while actually succeeding in God's eyes. It teaches that authentic religion is internal, not ritual, and that judgment is certain for persistent rebellion. The new covenant promise offers hope that God will do for us what we cannot do for ourselves—write His law on our hearts. Jeremiah's honest struggles encourage us that faith and doubt can coexist. The book calls us to trust God's good plans even when circumstances are dire."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Job",
|
||||
"abbreviation": "Job",
|
||||
"testament": "Old Testament",
|
||||
"position": 18,
|
||||
"chapters": 42,
|
||||
"category": "Wisdom/Poetry",
|
||||
"author": "Unknown",
|
||||
"date_written": "Unknown (possibly very ancient)",
|
||||
"introduction": "Job tackles the most profound human question: Why do the righteous suffer? A blameless man loses everything—children, wealth, health—yet refuses to curse God. His friends argue that suffering must indicate hidden sin, but Job maintains his innocence. When God finally speaks, He does not explain Job's suffering but reveals His overwhelming majesty and wisdom. Job's response is humble trust, and God vindicates him while rebuking his friends.",
|
||||
"key_themes": [
|
||||
"The problem of innocent suffering",
|
||||
"The inadequacy of simple answers",
|
||||
"Satan's accusations and God's sovereignty",
|
||||
"The limits of human wisdom",
|
||||
"God's majesty and man's humility",
|
||||
"Faith that trusts without understanding"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Job 1:21", "text": "Naked came I out of my mother's womb, and naked shall I return thither: the LORD gave, and the LORD hath taken away; blessed be the name of the LORD."},
|
||||
{"reference": "Job 13:15", "text": "Though he slay me, yet will I trust in him: but I will maintain mine own ways before him."},
|
||||
{"reference": "Job 19:25-26", "text": "For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth: And though after my skin worms destroy this body, yet in my flesh shall I see God."},
|
||||
{"reference": "Job 38:4", "text": "Where wast thou when I laid the foundations of the earth? declare, if thou hast understanding."},
|
||||
{"reference": "Job 42:5-6", "text": "I have heard of thee by the hearing of the ear: but now mine eye seeth thee. Wherefore I abhor myself, and repent in dust and ashes."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Prologue: The Test", "chapters": "1-2", "description": "Job's prosperity, Satan's challenge, Job's losses, his integrity"},
|
||||
{"section": "Dialogue: The Debate", "chapters": "3-31", "description": "Three cycles with Eliphaz, Bildad, Zophar; Job's responses"},
|
||||
{"section": "Elihu's Speeches", "chapters": "32-37", "description": "A younger voice offers different perspective"},
|
||||
{"section": "God Speaks", "chapters": "38-41", "description": "The LORD's questions from the whirlwind"},
|
||||
{"section": "Epilogue: The Restoration", "chapters": "42", "description": "Job's repentance, friends rebuked, blessings restored"}
|
||||
],
|
||||
"historical_context": "Job's setting appears to be the patriarchal era—he offers sacrifices as family priest, his wealth is measured in livestock, and no reference is made to Israel's covenant history. The land of Uz was likely east of Israel. The book's wisdom tradition connects it with similar literature from the ancient Near East that grappled with theodicy (the justice of God amid suffering).",
|
||||
"literary_style": "Job is primarily Hebrew poetry of the highest quality, framed by prose prologue and epilogue. The dialogues use parallelism, imagery, and rhetorical questions extensively. God's speeches in chapters 38-41 contain some of Scripture's most magnificent nature poetry. The irony of the book is profound—the reader knows what Job cannot (the heavenly council scene), creating dramatic tension throughout the dialogues.",
|
||||
"christ_in_book": "Job's cry for a mediator (9:33) and his confidence in a living Redeemer (19:25) point to Christ. Job's undeserved suffering anticipates Christ's innocent suffering. The pattern of suffering followed by vindication and restoration parallels Christ's death and resurrection. Job's intercession for his friends (42:8-10) foreshadows Christ's intercession. The book prepares us for a suffering Messiah who does not explain evil but defeats it.",
|
||||
"practical_application": "Job teaches that not all suffering is punishment and that platitudes can wound rather than heal. It warns against presuming to know God's reasons for allowing pain. The book invites us into a faith that trusts God's character when we cannot understand His ways. It shows that honest wrestling with God is not sin but that demanding answers can be presumptuous. Job models moving from secondhand knowledge to personal encounter with God."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Joel",
|
||||
"abbreviation": "Joel",
|
||||
"testament": "Old Testament",
|
||||
"position": 29,
|
||||
"chapters": 3,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Joel son of Pethuel",
|
||||
"date_written": "Uncertain (possibly c. 835-800 BC or later)",
|
||||
"introduction": "Joel uses a devastating locust plague as a lens for understanding the Day of the LORD—both its terrors and its blessings. The prophet calls for repentance, promising that God will restore what the locusts have eaten. Joel's prophecy of the Spirit being poured out on all flesh was fulfilled at Pentecost, making this short book foundational for understanding the church age.",
|
||||
"key_themes": [
|
||||
"The Day of the LORD—judgment and salvation",
|
||||
"Repentance and return to God",
|
||||
"Restoration after judgment",
|
||||
"The outpouring of the Spirit",
|
||||
"God's compassion for His people",
|
||||
"Final judgment of the nations"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Joel 2:12-13", "text": "Therefore also now, saith the LORD, turn ye even to me with all your heart, and with fasting, and with weeping, and with mourning: And rend your heart, and not your garments, and turn unto the LORD your God: for he is gracious and merciful, slow to anger, and of great kindness, and repenteth him of the evil."},
|
||||
{"reference": "Joel 2:25", "text": "And I will restore to you the years that the locust hath eaten, the cankerworm, and the caterpiller, and the palmerworm, my great army which I sent among you."},
|
||||
{"reference": "Joel 2:28-29", "text": "And it shall come to pass afterward, that I will pour out my spirit upon all flesh; and your sons and your daughters shall prophesy, your old men shall dream dreams, your young men shall see visions: And also upon the servants and upon the handmaids in those days will I pour out my spirit."},
|
||||
{"reference": "Joel 2:32", "text": "And it shall come to pass, that whosoever shall call on the name of the LORD shall be delivered."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "The Locust Plague", "chapters": "1:1-20", "description": "Description and call to lament"},
|
||||
{"section": "The Day of the LORD", "chapters": "2:1-17", "description": "Invasion described, call to repentance"},
|
||||
{"section": "God's Response", "chapters": "2:18-32", "description": "Restoration promised, Spirit outpoured"},
|
||||
{"section": "Final Judgment and Blessing", "chapters": "3", "description": "Nations judged, Judah restored"}
|
||||
],
|
||||
"historical_context": "Joel's date is disputed because the book lacks historical markers. The locust plague was a real disaster that prompted Joel's message. The agricultural devastation affected every aspect of life, including temple worship. Joel uses this crisis to teach about the ultimate Day of the LORD—when God will judge evil and vindicate His people.",
|
||||
"literary_style": "Joel moves from immediate crisis (locusts) to cosmic eschatology (the Day of the LORD). The imagery is vivid—locusts as an invading army, darkened sun, blood moon. The structure is concentric: lament-call to repentance-promise-fulfillment. Joel quotes and alludes to other prophets, weaving together prophetic tradition. The book contains some of Scripture's most memorable lines about restoration and the Spirit.",
|
||||
"christ_in_book": "Peter explicitly applies Joel 2:28-32 to Christ's work at Pentecost (Acts 2:16-21). The Spirit poured out is Christ's gift after His ascension. 'Whoever calls on the name of the LORD will be saved' becomes a central gospel promise (Romans 10:13). The cosmic signs (sun darkened, moon to blood) appear in Christ's apocalyptic discourse (Matthew 24:29). The Day of the LORD ultimately centers on Christ's return.",
|
||||
"practical_application": "Joel teaches that natural disasters can be calls to repentance—occasions to seek the Lord. It promises that God can restore wasted years, giving hope to those who have squandered time or opportunity. The call to 'rend your heart, not your garments' emphasizes internal transformation over external religion. Joel's promise of the Spirit assures believers that God equips His people supernaturally. The invitation to call on the LORD offers salvation to all."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "John",
|
||||
"abbreviation": "John",
|
||||
"testament": "New Testament",
|
||||
"position": 43,
|
||||
"chapters": 21,
|
||||
"category": "Gospels",
|
||||
"author": "John, the beloved disciple and apostle",
|
||||
"date_written": "c. AD 85-95",
|
||||
"introduction": "John's Gospel is unique among the four, written 'that ye might believe that Jesus is the Christ, the Son of God; and that believing ye might have life through his name.' Rather than following the synoptic outline, John selects seven signs and records extensive discourses revealing Jesus' divine identity through seven 'I AM' statements. The Gospel plumbs theological depths while remaining accessible, presenting Jesus as the eternal Word made flesh.",
|
||||
"key_themes": [
|
||||
"Jesus as the divine Son of God",
|
||||
"The seven 'I AM' statements",
|
||||
"Signs revealing Jesus' glory",
|
||||
"Belief and eternal life",
|
||||
"Light versus darkness",
|
||||
"The Holy Spirit as Comforter"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "John 1:1,14", "text": "In the beginning was the Word, and the Word was with God, and the Word was God... And the Word was made flesh, and dwelt among us, (and we beheld his glory, the glory as of the only begotten of the Father,) full of grace and truth."},
|
||||
{"reference": "John 3:16", "text": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."},
|
||||
{"reference": "John 14:6", "text": "Jesus saith unto him, I am the way, the truth, and the life: no man cometh unto the Father, but by me."},
|
||||
{"reference": "John 20:31", "text": "But these are written, that ye might believe that Jesus is the Christ, the Son of God; and that believing ye might have life through his name."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Prologue", "chapters": "1:1-18", "description": "The Word made flesh"},
|
||||
{"section": "Book of Signs", "chapters": "1:19-12:50", "description": "Seven signs, public ministry, responses of faith and unbelief"},
|
||||
{"section": "Book of Glory", "chapters": "13-20", "description": "Farewell discourse, passion, resurrection"},
|
||||
{"section": "Epilogue", "chapters": "21", "description": "Resurrection appearances, Peter restored"}
|
||||
],
|
||||
"historical_context": "John wrote late in the first century, perhaps from Ephesus. He assumes readers know the synoptic accounts and supplements them with material they lack (the Judean ministry, extended discourses). The Gospel addresses both Jewish controversy about Jesus' identity and early church needs for theological depth. John's eyewitness claim (19:35; 21:24) and intimate knowledge of events support traditional authorship.",
|
||||
"literary_style": "John is both simple and profound—using basic vocabulary (light, life, truth, love) to express deep theology. The 'I AM' statements echo God's self-revelation to Moses. Signs reveal Jesus' glory to those with eyes to see. The dialogues often feature misunderstanding that Jesus clarifies. Irony pervades the passion narrative. The Gospel is highly structured, with symbolic numbers (7 signs, 7 'I AM' statements) and careful organization.",
|
||||
"christ_in_book": "John presents the highest Christology: Jesus is the pre-existent Word who is God, creator of all, who became flesh. The 'I AM' statements echo Exodus 3:14—Jesus claims divine identity. He is the Lamb of God, the Resurrection and the Life, the Way, Truth, and Life. Yet He is also fully human—weeping at Lazarus's tomb, thirsting on the cross. The crucifixion is His glorification, the hour for which He came.",
|
||||
"practical_application": "John calls for decision—belief or unbelief, light or darkness, life or death. The Gospel shows what it means to 'believe in' Jesus (over 90 occurrences)—not just intellectual assent but trusting relationship. The Farewell Discourse teaches about the Spirit's ongoing presence, answered prayer, and abiding in Christ. John assures believers of eternal life as a present possession and future hope. To know Jesus is to know God."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Jonah",
|
||||
"abbreviation": "Jonah",
|
||||
"testament": "Old Testament",
|
||||
"position": 32,
|
||||
"chapters": 4,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Unknown (about Jonah)",
|
||||
"date_written": "c. 780-750 BC (events), written possibly later",
|
||||
"introduction": "Jonah is unique among the prophets—it focuses not on the prophet's message but on his struggle with God's mercy. Commanded to preach to Nineveh, Israel's dreaded enemy, Jonah flees in the opposite direction. Through storm, fish, and withered plant, God teaches Jonah (and Israel) that His compassion extends to all nations, even enemies. The book challenges narrow nationalism and reveals God's heart for the whole world.",
|
||||
"key_themes": [
|
||||
"God's compassion for all nations",
|
||||
"The futility of running from God",
|
||||
"Second chances and God's patience",
|
||||
"The danger of religious nationalism",
|
||||
"Repentance and its power",
|
||||
"God's sovereignty over creation"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Jonah 1:2", "text": "Arise, go to Nineveh, that great city, and cry against it; for their wickedness is come up before me."},
|
||||
{"reference": "Jonah 2:9", "text": "But I will sacrifice unto thee with the voice of thanksgiving; I will pay that that I have vowed. Salvation is of the LORD."},
|
||||
{"reference": "Jonah 3:10", "text": "And God saw their works, that they turned from their evil way; and God repented of the evil, that he had said that he would do unto them; and he did it not."},
|
||||
{"reference": "Jonah 4:2", "text": "I knew that thou art a gracious God, and merciful, slow to anger, and of great kindness, and repentest thee of the evil."},
|
||||
{"reference": "Jonah 4:11", "text": "And should not I spare Nineveh, that great city, wherein are more than sixscore thousand persons that cannot discern between their right hand and their left hand; and also much cattle?"}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Jonah's Flight", "chapters": "1", "description": "Call, flight, storm, thrown overboard"},
|
||||
{"section": "Jonah's Prayer", "chapters": "2", "description": "In the fish's belly, thanksgiving, deliverance"},
|
||||
{"section": "Nineveh's Repentance", "chapters": "3", "description": "Preaching, city-wide repentance, God relents"},
|
||||
{"section": "Jonah's Anger", "chapters": "4", "description": "Prophet's complaint, object lesson of the plant"}
|
||||
],
|
||||
"historical_context": "Jonah prophesied during the reign of Jeroboam II (2 Kings 14:25), around 760 BC. Nineveh was the capital of Assyria, the brutal empire that would destroy Israel in 722 BC. Assyrian cruelty was legendary—impalement, mass deportations, skinning captives alive. Jonah's reluctance to offer mercy to such enemies is humanly understandable, which makes God's compassion all the more remarkable.",
|
||||
"literary_style": "Jonah is narrative rather than oracular prophecy, told with masterful irony and humor. The prophet who proclaims 'salvation is of the LORD' is angry when God saves. Pagan sailors and Ninevites respond better than the prophet. The fish is a vehicle of mercy, not punishment. The book ends with an unanswered question, inviting readers to examine their own hearts. Every element teaches—storm, fish, plant, worm, wind.",
|
||||
"christ_in_book": "Jesus cited Jonah as 'the sign' given to His generation—three days in the fish's belly corresponding to three days in the tomb (Matthew 12:39-41). Jesus declared Himself 'greater than Jonah.' Where Jonah reluctantly preached judgment, Jesus willingly brought salvation. Where Jonah fled from God's mission, Jesus embraced His. Where Jonah resented Gentile mercy, Jesus died for the world. Nineveh's repentance at one prophet's preaching condemns those who reject Jesus.",
|
||||
"practical_application": "Jonah exposes the self-righteousness that wants mercy for ourselves but judgment for others. It challenges believers to embrace God's heart for enemies and outsiders. The book shows that God's sovereignty extends everywhere—we cannot escape Him, and He can use any means to accomplish His purposes. Jonah teaches that we can obey outwardly while harboring wrong attitudes. The final question—do we care about people as God does?—remains unanswered for each reader to answer."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Joshua",
|
||||
"abbreviation": "Josh",
|
||||
"testament": "Old Testament",
|
||||
"position": 6,
|
||||
"chapters": 24,
|
||||
"category": "History",
|
||||
"author": "Joshua (with possible later additions)",
|
||||
"date_written": "c. 1400-1350 BC",
|
||||
"introduction": "Joshua records the fulfillment of God's promise to Abraham—Israel's conquest and settlement of Canaan. After forty years of wilderness wandering, a new generation under new leadership crosses the Jordan and takes possession of the land. The book demonstrates that God is faithful to His promises and fights for His people when they trust and obey Him. Joshua's name, meaning 'The LORD saves,' is the Hebrew form of Jesus.",
|
||||
"key_themes": [
|
||||
"Fulfillment of God's covenant promises",
|
||||
"Faith, courage, and obedience in conquest",
|
||||
"Holy war and God fighting for Israel",
|
||||
"The importance of following God's instructions exactly",
|
||||
"The danger of compromise with evil",
|
||||
"Rest and inheritance in the Promised Land"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Joshua 1:8-9", "text": "This book of the law shall not depart out of thy mouth; but thou shalt meditate therein day and night, that thou mayest observe to do according to all that is written therein: for then thou shalt make thy way prosperous, and then thou shalt have good success. Have not I commanded thee? Be strong and of a good courage; be not afraid, neither be thou dismayed: for the LORD thy God is with thee whithersoever thou goest."},
|
||||
{"reference": "Joshua 21:45", "text": "There failed not ought of any good thing which the LORD had spoken unto the house of Israel; all came to pass."},
|
||||
{"reference": "Joshua 24:15", "text": "And if it seem evil unto you to serve the LORD, choose you this day whom ye will serve... but as for me and my house, we will serve the LORD."},
|
||||
{"reference": "Joshua 23:14", "text": "Behold, this day I am going the way of all the earth: and ye know in all your hearts and in all your souls, that not one thing hath failed of all the good things which the LORD your God spake concerning you; all are come to pass unto you, and not one thing hath failed thereof."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Entering the Land", "chapters": "1-5", "description": "Preparation, Rahab and the spies, crossing Jordan, Gilgal ceremonies"},
|
||||
{"section": "Conquering the Land", "chapters": "6-12", "description": "Jericho, Ai, southern and northern campaigns, list of defeated kings"},
|
||||
{"section": "Dividing the Land", "chapters": "13-21", "description": "Tribal allotments, Caleb's inheritance, Levitical cities, cities of refuge"},
|
||||
{"section": "Serving the LORD", "chapters": "22-24", "description": "Eastern tribes' altar, Joshua's farewell, covenant renewal at Shechem"}
|
||||
],
|
||||
"historical_context": "The conquest of Canaan occurred approximately 1400 BC during the Late Bronze Age. The Canaanite city-states were politically fragmented, having no unified resistance to offer. Archaeological evidence shows significant destruction at various sites during this period. The book must be understood in light of God's judgment on Canaanite wickedness (see Genesis 15:16) and His determination to establish a holy people in a holy land.",
|
||||
"literary_style": "Joshua combines dramatic battle narratives with detailed geographical lists. The book is structured around three major themes: entrance, conquest, and division. Key episodes (Jericho, Achan, Gibeon) are told with vivid detail, while campaigns are summarized efficiently. Joshua's speeches frame the book, echoing Moses' charges in Deuteronomy. The geographical catalogs, while seemingly tedious, affirm the reality of possession.",
|
||||
"christ_in_book": "Joshua himself is a type of Christ—his very name anticipates Jesus, and his role as the one who leads God's people into their inheritance foreshadows Christ leading believers into salvation's fullness. The scarlet cord of Rahab pictures redemption through blood. The Captain of the LORD's host (5:13-15) is a Christophany. The cities of refuge point to Christ as our refuge from judgment. The rest Joshua provided foreshadows the rest Christ gives (Hebrews 4).",
|
||||
"practical_application": "Joshua teaches that God's promises require our active participation—faith without works is dead. It shows the importance of meditating on Scripture for success in spiritual warfare. The book warns against partial obedience (Achan) and hasty decisions without seeking God (Gibeon). It calls each generation to renew their commitment to the LORD. The allocation of inheritance reminds us that God has specific purposes for each of His people."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Jude",
|
||||
"abbreviation": "Jude",
|
||||
"testament": "New Testament",
|
||||
"position": 65,
|
||||
"chapters": 1,
|
||||
"category": "General Epistles",
|
||||
"author": "Jude, brother of James (and Jesus)",
|
||||
"date_written": "c. AD 65-80",
|
||||
"introduction": "Jude intended to write about salvation but felt compelled to address an urgent threat: false teachers had infiltrated the church. These 'ungodly men' turned grace into license for immorality and denied Christ. Jude calls believers to contend earnestly for the faith once delivered to the saints. Drawing on vivid examples from Jewish history and tradition, he warns of the doom awaiting such apostates while encouraging believers to remain in God's love.",
|
||||
"key_themes": [
|
||||
"Contending for the faith",
|
||||
"Warning against false teachers",
|
||||
"Judgment of the ungodly",
|
||||
"Keeping oneself in God's love",
|
||||
"The certainty of apostolic teaching",
|
||||
"Doxology to the one who keeps us"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Jude 1:3", "text": "Beloved, when I gave all diligence to write unto you of the common salvation, it was needful for me to write unto you, and exhort you that ye should earnestly contend for the faith which was once delivered unto the saints."},
|
||||
{"reference": "Jude 1:4", "text": "For there are certain men crept in unawares, who were before of old ordained to this condemnation, ungodly men, turning the grace of our God into lasciviousness, and denying the only Lord God, and our Lord Jesus Christ."},
|
||||
{"reference": "Jude 1:20-21", "text": "But ye, beloved, building up yourselves on your most holy faith, praying in the Holy Ghost, Keep yourselves in the love of God, looking for the mercy of our Lord Jesus Christ unto eternal life."},
|
||||
{"reference": "Jude 1:24-25", "text": "Now unto him that is able to keep you from falling, and to present you faultless before the presence of his glory with exceeding joy, To the only wise God our Saviour, be glory and majesty, dominion and power, both now and ever. Amen."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Greeting and Purpose", "chapters": "1:1-4", "description": "To the called, contend for the faith"},
|
||||
{"section": "Condemnation of False Teachers", "chapters": "1:5-16", "description": "Historical examples, their character and doom"},
|
||||
{"section": "Exhortation to Believers", "chapters": "1:17-23", "description": "Remember predictions, keep in God's love, show mercy"},
|
||||
{"section": "Doxology", "chapters": "1:24-25", "description": "To Him who is able to keep you"}
|
||||
],
|
||||
"historical_context": "Jude identifies himself as James's brother, making him Jesus' half-brother. False teachers with antinomian (anti-law) tendencies had infiltrated the church, using grace as excuse for immorality. Jude draws on Jewish tradition (Enoch, the assumption of Moses) familiar to his audience. The letter shares significant material with 2 Peter 2, suggesting literary dependence or common source.",
|
||||
"literary_style": "Jude is vividly rhetorical. He employs triads throughout: three Old Testament examples (Israel in wilderness, angels, Sodom), three individual types (Cain, Balaam, Korah), three descriptions (dreamers who defile, reject, blaspheme). His illustrations are graphic—clouds without rain, autumn trees doubly dead, wild waves foaming shame. The letter builds to one of Scripture's great doxologies.",
|
||||
"christ_in_book": "Jesus Christ is 'our only Master and Lord' whom the false teachers deny. He is the 'Lord' who destroyed unbelievers from Egypt and rescued His people. Believers look for His mercy that leads to eternal life. He will come with myriads of holy ones to execute judgment. Through our Lord Jesus Christ, God is able to keep us from stumbling and present us faultless with exceeding joy.",
|
||||
"practical_application": "Jude calls for active defense of the faith—not passive acceptance of every teaching claiming Christian label. False teachers can be recognized by their character and conduct, not just doctrine. The examples of judgment warn of the seriousness of apostasy. Believers must build themselves up in faith, pray in the Spirit, keep in God's love, and show mercy to the wavering. The doxology assures us: God is able to keep us from falling."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "Judges",
|
||||
"abbreviation": "Judg",
|
||||
"testament": "Old Testament",
|
||||
"position": 7,
|
||||
"chapters": 21,
|
||||
"category": "History",
|
||||
"author": "Unknown (possibly Samuel)",
|
||||
"date_written": "c. 1050-1000 BC",
|
||||
"introduction": "Judges chronicles Israel's darkest period—a downward spiral of sin, suffering, supplication, and salvation repeated in cycles across some 350 years. After Joshua's generation died, Israel abandoned the LORD and served the gods of Canaan. The book's refrain, 'everyone did what was right in his own eyes,' captures the moral chaos that resulted. Yet even in Israel's unfaithfulness, God raised up deliverers, demonstrating His patience and commitment to His covenant people.",
|
||||
"key_themes": [
|
||||
"The cycle of sin, oppression, crying out, and deliverance",
|
||||
"The consequences of incomplete obedience",
|
||||
"Moral and spiritual decline without godly leadership",
|
||||
"God's grace in raising up deliverers",
|
||||
"The danger of cultural compromise",
|
||||
"The need for a godly king"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Judges 2:10-12", "text": "And also all that generation were gathered unto their fathers: and there arose another generation after them, which knew not the LORD, nor yet the works which he had done for Israel. And the children of Israel did evil in the sight of the LORD, and served Baalim: And they forsook the LORD God of their fathers."},
|
||||
{"reference": "Judges 17:6", "text": "In those days there was no king in Israel, but every man did that which was right in his own eyes."},
|
||||
{"reference": "Judges 21:25", "text": "In those days there was no king in Israel: every man did that which was right in his own eyes."},
|
||||
{"reference": "Judges 2:16", "text": "Nevertheless the LORD raised up judges, which delivered them out of the hand of those that spoiled them."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction: Incomplete Conquest", "chapters": "1-2", "description": "Failure to drive out the Canaanites and the cycle explained"},
|
||||
{"section": "The Judges", "chapters": "3-16", "description": "Othniel, Ehud, Deborah/Barak, Gideon, Jephthah, Samson, and others"},
|
||||
{"section": "Appendices: Moral Chaos", "chapters": "17-21", "description": "Micah's idolatry, Dan's apostasy, the Levite's concubine, civil war against Benjamin"}
|
||||
],
|
||||
"historical_context": "The period of the judges spans from Joshua's death to Samuel's ministry, roughly 1380-1050 BC. This was the Late Bronze Age transitioning to the Iron Age. Israel existed as a loose confederation of tribes with no central government. The surrounding peoples—Moabites, Ammonites, Philistines, Canaanites—constantly pressured Israel. The judges were regional leaders raised up by God for specific crises, not a continuous succession.",
|
||||
"literary_style": "Judges employs a distinctive cyclical structure: apostasy, oppression, cry for help, deliverance, rest. The narratives are vivid and often violent, reflecting the brutal era. Irony and dark humor appear throughout (Ehud's assassination of Eglon, Sisera's death). The book deliberately deteriorates—later judges are increasingly flawed, and the final chapters descend into near-Sodom levels of depravity. This literary strategy argues for the necessity of godly monarchy.",
|
||||
"christ_in_book": "The judges themselves foreshadow Christ as the ultimate Deliverer who saves His people from spiritual oppression. Each judge's partial and temporary salvation points to Christ's complete and eternal deliverance. Samson, despite his flaws, pictures Christ's victory through apparent defeat—destroying more enemies in his death than in his life. The book's cry for a righteous king anticipates the coming of David's greater Son.",
|
||||
"practical_application": "Judges warns of the danger of forgetting God's works and of the rapid spiritual decline that follows. It shows how easily one generation's faith can be lost. The book exposes the folly of everyone doing what is right in their own eyes—the very definition of moral relativism. It demonstrates that compromise with sin leads to enslavement, and that only God can truly deliver. The pattern challenges us to examine our own cycles of sin and return."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Lamentations",
|
||||
"abbreviation": "Lam",
|
||||
"testament": "Old Testament",
|
||||
"position": 25,
|
||||
"chapters": 5,
|
||||
"category": "Major Prophets",
|
||||
"author": "Traditionally Jeremiah",
|
||||
"date_written": "c. 586-580 BC",
|
||||
"introduction": "Lamentations is a funeral dirge for Jerusalem, destroyed by Babylon in 586 BC. In five poems of raw grief, the author weeps over the city's devastation, the temple's destruction, and the people's suffering. The book acknowledges that judgment was deserved but does not suppress the agony. At its center stands a confession of faith: God's mercies are new every morning. Lamentations teaches us how to grieve with hope.",
|
||||
"key_themes": [
|
||||
"Grief over Jerusalem's destruction",
|
||||
"Acknowledgment of sin and judgment",
|
||||
"God's faithfulness amid suffering",
|
||||
"The sovereignty and justice of God",
|
||||
"Prayer in desolation",
|
||||
"Hope beyond judgment"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Lamentations 1:1", "text": "How doth the city sit solitary, that was full of people! how is she become as a widow! she that was great among the nations, and princess among the provinces, how is she become tributary!"},
|
||||
{"reference": "Lamentations 3:22-23", "text": "It is of the LORD's mercies that we are not consumed, because his compassions fail not. They are new every morning: great is thy faithfulness."},
|
||||
{"reference": "Lamentations 3:39-40", "text": "Wherefore doth a living man complain, a man for the punishment of his sins? Let us search and try our ways, and turn again to the LORD."},
|
||||
{"reference": "Lamentations 3:31-33", "text": "For the Lord will not cast off for ever: But though he cause grief, yet will he have compassion according to the multitude of his mercies. For he doth not afflict willingly nor grieve the children of men."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Jerusalem's Desolation", "chapters": "1", "description": "The lonely, weeping city; she has no comforter"},
|
||||
{"section": "God's Judgment", "chapters": "2", "description": "The LORD as enemy; He has destroyed without pity"},
|
||||
{"section": "Hope in Darkness", "chapters": "3", "description": "Personal suffering, yet God's mercies are new"},
|
||||
{"section": "The Siege Recalled", "chapters": "4", "description": "Horrors of the siege; leaders' failure"},
|
||||
{"section": "Prayer for Restoration", "chapters": "5", "description": "Remember us, O LORD; restore us"}
|
||||
],
|
||||
"historical_context": "Lamentations was written in the immediate aftermath of Jerusalem's destruction in 586 BC. The Babylonians had breached the walls, burned the temple, and deported most of the population. Those who remained faced starvation and violence. The poems may have been composed for memorial services on the temple site. They became part of Jewish liturgy for the Ninth of Av, commemorating the temple's destruction.",
|
||||
"literary_style": "Lamentations consists of five acrostic poems—the first four follow the 22-letter Hebrew alphabet (chapter 3 has three verses per letter, totaling 66). The acrostic structure suggests the author is working through grief systematically, 'A to Z.' The qinah (funeral dirge) meter gives a limping, sobbing rhythm. Chapter 3 stands at the center, where personal grief transforms into hope. The final chapter breaks the acrostic, perhaps suggesting incomplete resolution.",
|
||||
"christ_in_book": "Jesus wept over Jerusalem as Jeremiah did (Luke 19:41-44). The suffering righteous one in chapter 3 anticipates Christ's innocent suffering. The destruction of Jerusalem points to Christ's prophecy of the temple's second destruction (70 AD). Christ's resurrection provides the ultimate answer to Lamentations' question: Will God restore? The book's theology of judgment for sin prepares us to understand Christ bearing the curse for us.",
|
||||
"practical_application": "Lamentations gives us permission to grieve deeply and honestly before God. It models prayer that acknowledges sin while still crying out in pain. The book teaches that faith does not deny suffering but finds God in its midst. The central affirmation—God's mercies are new every morning—has sustained countless believers through their darkest nights. Lamentations reminds us that judgment is real but not God's final word; His compassions never fail."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Leviticus",
|
||||
"abbreviation": "Lev",
|
||||
"testament": "Old Testament",
|
||||
"position": 3,
|
||||
"chapters": 27,
|
||||
"category": "Law (Torah/Pentateuch)",
|
||||
"author": "Moses",
|
||||
"date_written": "c. 1446-1406 BC",
|
||||
"introduction": "Leviticus, named after the tribe of Levi from whom the priests came, is God's handbook for holy living. Often overlooked by modern readers, this book answers the crucial question: How can a holy God dwell among sinful people? The answer involves sacrifice, priesthood, and sanctification. Leviticus reveals God's holiness more intensely than perhaps any other book and provides the theological vocabulary for understanding Christ's atoning work.",
|
||||
"key_themes": [
|
||||
"The holiness of God",
|
||||
"Sacrifice and atonement for sin",
|
||||
"The priesthood and mediation",
|
||||
"Clean and unclean distinctions",
|
||||
"Sanctification and holy living",
|
||||
"The Day of Atonement (Yom Kippur)"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Leviticus 11:44", "text": "For I am the LORD your God: ye shall therefore sanctify yourselves, and ye shall be holy; for I am holy."},
|
||||
{"reference": "Leviticus 17:11", "text": "For the life of the flesh is in the blood: and I have given it to you upon the altar to make an atonement for your souls: for it is the blood that maketh an atonement for the soul."},
|
||||
{"reference": "Leviticus 19:2", "text": "Speak unto all the congregation of the children of Israel, and say unto them, Ye shall be holy: for I the LORD your God am holy."},
|
||||
{"reference": "Leviticus 19:18", "text": "Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbour as thyself: I am the LORD."},
|
||||
{"reference": "Leviticus 16:30", "text": "For on that day shall the priest make an atonement for you, to cleanse you, that ye may be clean from all your sins before the LORD."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "The Offerings", "chapters": "1-7", "description": "Five types of sacrifices: burnt, grain, peace, sin, and trespass offerings"},
|
||||
{"section": "The Priesthood", "chapters": "8-10", "description": "Consecration of Aaron and his sons; Nadab and Abihu's judgment"},
|
||||
{"section": "Purity Laws", "chapters": "11-15", "description": "Clean and unclean distinctions, dietary laws, and bodily discharges"},
|
||||
{"section": "The Day of Atonement", "chapters": "16", "description": "The annual ceremony for national cleansing from sin"},
|
||||
{"section": "The Holiness Code", "chapters": "17-26", "description": "Practical instructions for holy living in all areas of life"},
|
||||
{"section": "Vows and Tithes", "chapters": "27", "description": "Regulations for dedications and valuations"}
|
||||
],
|
||||
"historical_context": "Leviticus contains instructions given at Mount Sinai during the month between the erection of the Tabernacle (Exodus 40) and Israel's departure from Sinai (Numbers 10). These laws distinguished Israel from surrounding pagan nations and created a holy community centered on the worship of the one true God. The elaborate sacrificial system acknowledged sin's seriousness while pointing to a future perfect sacrifice.",
|
||||
"literary_style": "Leviticus is primarily legal literature, consisting of detailed instructions for worship, sacrifice, and daily living. The repeated phrase 'I am the LORD' (over 45 times) emphasizes divine authority. The chiastic structure of the book centers on chapter 16 (the Day of Atonement), highlighting its theological importance. The laws often follow a pattern of command, rationale, and consequence.",
|
||||
"christ_in_book": "Leviticus is the book of Hebrews' primary Old Testament source. Every sacrifice points to Christ: the burnt offering to His complete dedication, the grain offering to His perfect life, the peace offering to the reconciliation He brings, the sin offering to His bearing our guilt, the trespass offering to His payment for specific sins. The Day of Atonement's two goats picture Christ's sacrifice and the removal of our sins. The high priest represents Christ our Mediator, and the holy place foreshadows our access to God through Him.",
|
||||
"practical_application": "Leviticus teaches that approaching God requires both reverence for His holiness and trust in His provided means of atonement. It shows that all of life—food, relationships, business, sexuality—falls under God's lordship. The call to 'be holy as I am holy' remains binding for Christians, now fulfilled not through ceremonial law but through the indwelling Holy Spirit. The book also establishes that 'without shedding of blood is no remission' (Hebrews 9:22), preparing us to appreciate Christ's sacrifice."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Luke",
|
||||
"abbreviation": "Luke",
|
||||
"testament": "New Testament",
|
||||
"position": 42,
|
||||
"chapters": 24,
|
||||
"category": "Gospels",
|
||||
"author": "Luke, the physician and companion of Paul",
|
||||
"date_written": "c. AD 60-80",
|
||||
"introduction": "Luke is the longest Gospel and part one of a two-volume work (Luke-Acts). Written by a Gentile physician for a wider Gentile audience, Luke emphasizes Jesus' universal significance—the Savior of all people regardless of ethnicity, gender, or social status. Luke highlights Jesus' compassion for outcasts, His attention to women, His warnings about wealth, and the role of the Holy Spirit. The Gospel presents Jesus as the perfect human who brings salvation to all.",
|
||||
"key_themes": [
|
||||
"Jesus as Savior of all people",
|
||||
"Compassion for outcasts and marginalized",
|
||||
"The role of women in Jesus' ministry",
|
||||
"Joy and celebration",
|
||||
"The Holy Spirit's work",
|
||||
"Prayer and Jesus' prayer life"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Luke 1:4", "text": "That thou mightest know the certainty of those things, wherein thou hast been instructed."},
|
||||
{"reference": "Luke 4:18-19", "text": "The Spirit of the Lord is upon me, because he hath anointed me to preach the gospel to the poor; he hath sent me to heal the brokenhearted, to preach deliverance to the captives, and recovering of sight to the blind, to set at liberty them that are bruised, To preach the acceptable year of the Lord."},
|
||||
{"reference": "Luke 19:10", "text": "For the Son of man is come to seek and to save that which was lost."},
|
||||
{"reference": "Luke 24:46-47", "text": "And said unto them, Thus it is written, and thus it behoved Christ to suffer, and to rise from the dead the third day: And that repentance and remission of sins should be preached in his name among all nations, beginning at Jerusalem."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Prologue", "chapters": "1:1-4", "description": "Purpose and dedication to Theophilus"},
|
||||
{"section": "Birth Narratives", "chapters": "1:5-2:52", "description": "John and Jesus' births, childhood"},
|
||||
{"section": "Preparation", "chapters": "3:1-4:13", "description": "John's ministry, Jesus' baptism, genealogy, temptation"},
|
||||
{"section": "Galilean Ministry", "chapters": "4:14-9:50", "description": "Nazareth sermon, miracles, disciples called, teaching"},
|
||||
{"section": "Travel to Jerusalem", "chapters": "9:51-19:27", "description": "Unique parables and teaching, extensive journey section"},
|
||||
{"section": "Jerusalem Ministry", "chapters": "19:28-21:38", "description": "Entry, temple, Olivet discourse"},
|
||||
{"section": "Passion and Resurrection", "chapters": "22-24", "description": "Last Supper, arrest, trial, crucifixion, resurrection, ascension"}
|
||||
],
|
||||
"historical_context": "Luke wrote for Theophilus (possibly a patron or representative Gentile believer) to provide an orderly, well-researched account of Jesus' life. Writing as a second-generation Christian, Luke consulted eyewitnesses and earlier accounts. His Gospel may have been completed before Acts, which ends around AD 62. Luke's careful historical notes (dating by Roman rulers, governors) demonstrate his concern for accuracy.",
|
||||
"literary_style": "Luke writes polished Greek with literary sophistication. He includes unique material: the birth narratives from Mary's perspective, parables like the Good Samaritan and Prodigal Son, and the Emmaus road encounter. The extended travel section (9:51-19:27) is unique to Luke. His narrative shows Jesus steadfastly 'setting His face toward Jerusalem.' The Gospel begins and ends in the temple, completing a literary circle.",
|
||||
"christ_in_book": "Luke presents Jesus as the ideal human, perfect in His dependence on the Spirit and in prayer. He is the Prophet mighty in deed and word, the compassionate Healer who touches lepers and raises the dead. He is the friend of sinners who eats with outcasts. His genealogy traces to Adam (not just Abraham), emphasizing universal significance. He is the ascending Lord who blesses His followers and sends the Spirit.",
|
||||
"practical_application": "Luke challenges comfortable religion with Jesus' radical inclusion of outcasts and warnings about wealth. The parables teach extravagant grace (Prodigal Son) and practical compassion (Good Samaritan). Jesus' prayer life models dependence on the Father. Luke encourages believers that the gospel is for all—Jew and Gentile, rich and poor, male and female. The certainty Luke offers remains vital: we can know the truth about Jesus."
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "Malachi",
|
||||
"abbreviation": "Mal",
|
||||
"testament": "Old Testament",
|
||||
"position": 39,
|
||||
"chapters": 4,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Malachi",
|
||||
"date_written": "c. 450-400 BC",
|
||||
"introduction": "Malachi is the last voice of Old Testament prophecy, speaking to a discouraged post-exilic community. The temple had been rebuilt, but the anticipated glory had not come. The people and priests had grown cynical, offering defective sacrifices and questioning God's love and justice. Through a series of disputations, Malachi exposes their failures while promising that the Lord will suddenly come to His temple, preceded by a messenger preparing the way. Then 400 years of prophetic silence until John the Baptist.",
|
||||
"key_themes": [
|
||||
"God's persistent love for Israel",
|
||||
"Corrupt worship and unfaithful priests",
|
||||
"Faithlessness in marriage and tithing",
|
||||
"The coming Day of the LORD",
|
||||
"The messenger who prepares the way",
|
||||
"Blessing for those who fear the LORD"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Malachi 1:2", "text": "I have loved you, saith the LORD. Yet ye say, Wherein hast thou loved us?"},
|
||||
{"reference": "Malachi 3:1", "text": "Behold, I will send my messenger, and he shall prepare the way before me: and the LORD, whom ye seek, shall suddenly come to his temple, even the messenger of the covenant, whom ye delight in: behold, he shall come, saith the LORD of hosts."},
|
||||
{"reference": "Malachi 3:8", "text": "Will a man rob God? Yet ye have robbed me. But ye say, Wherein have we robbed thee? In tithes and offerings."},
|
||||
{"reference": "Malachi 3:10", "text": "Bring ye all the tithes into the storehouse, that there may be meat in mine house, and prove me now herewith, saith the LORD of hosts, if I will not open you the windows of heaven, and pour you out a blessing, that there shall not be room enough to receive it."},
|
||||
{"reference": "Malachi 4:2", "text": "But unto you that fear my name shall the Sun of righteousness arise with healing in his wings."},
|
||||
{"reference": "Malachi 4:5-6", "text": "Behold, I will send you Elijah the prophet before the coming of the great and dreadful day of the LORD: And he shall turn the heart of the fathers to the children, and the heart of the children to their fathers, lest I come and smite the earth with a curse."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "God's Love Affirmed", "chapters": "1:1-5", "description": "Jacob loved, Esau rejected"},
|
||||
{"section": "Priests Rebuked", "chapters": "1:6-2:9", "description": "Defiled offerings, broken covenant of Levi"},
|
||||
{"section": "People Rebuked", "chapters": "2:10-16", "description": "Faithless marriages, divorce condemned"},
|
||||
{"section": "The Coming Judgment", "chapters": "2:17-3:5", "description": "Questions of justice, the messenger coming"},
|
||||
{"section": "Call to Return", "chapters": "3:6-12", "description": "Robbing God in tithes, promise of blessing"},
|
||||
{"section": "The Righteous and Wicked", "chapters": "3:13-4:6", "description": "Book of remembrance, sun of righteousness, Elijah coming"}
|
||||
],
|
||||
"historical_context": "Malachi prophesied about a century after the temple's completion, during or after the time of Ezra and Nehemiah (around 450-400 BC). The initial enthusiasm had faded. Priests offered blemished animals; people married pagans and divorced covenant wives; tithes were withheld. The promised messianic age had not materialized, leading to cynicism. Malachi addresses this spiritual malaise.",
|
||||
"literary_style": "Malachi uses a distinctive disputation format: God makes a statement, the people challenge it ('Wherein...?'), and God responds with explanation and accusation. This dialogue style engages readers directly. The book alternates between rebuke and promise. The final verses—Elijah coming, fathers' and children's hearts turning—set up the New Testament's opening act perfectly.",
|
||||
"christ_in_book": "John the Baptist is explicitly identified as the 'Elijah' Malachi predicted (Matthew 11:14, 17:12). The messenger preparing the way (3:1) is John; the Lord suddenly coming to His temple is Christ. The 'Sun of righteousness with healing in his wings' is Jesus. The 'messenger of the covenant' points to Christ the mediator of a new covenant. Malachi's questions about justice are answered at the cross.",
|
||||
"practical_application": "Malachi exposes the subtle decline from passionate devotion to cynical religion—giving God our leftovers rather than our best. It warns against rationalizing sin while expecting blessing. The book challenges us in practical areas: honoring God with our offerings, maintaining marriage covenants, speaking rightly about God's faithfulness. Yet it promises that those who fear the LORD are precious to Him—their names written in His book of remembrance. The Old Testament ends looking forward to someone coming."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Mark",
|
||||
"abbreviation": "Mark",
|
||||
"testament": "New Testament",
|
||||
"position": 41,
|
||||
"chapters": 16,
|
||||
"category": "Gospels",
|
||||
"author": "John Mark, companion of Peter and Paul",
|
||||
"date_written": "c. AD 55-65",
|
||||
"introduction": "Mark is the shortest and likely earliest Gospel, presenting Jesus as the powerful Son of God who came to serve and give His life as a ransom. The narrative moves rapidly, using 'immediately' over 40 times. Mark emphasizes Jesus' actions more than His teachings, showing His authority over disease, demons, nature, and death. Yet this powerful Lord chose suffering—the cross is central to Mark's portrait of Jesus and His call to discipleship.",
|
||||
"key_themes": [
|
||||
"Jesus as the powerful Son of God",
|
||||
"The suffering Servant who gives His life",
|
||||
"The messianic secret",
|
||||
"Discipleship as following the crucified Christ",
|
||||
"The kingdom of God",
|
||||
"Faith and fear"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Mark 1:1", "text": "The beginning of the gospel of Jesus Christ, the Son of God."},
|
||||
{"reference": "Mark 8:34-35", "text": "And when he had called the people unto him with his disciples also, he said unto them, Whosoever will come after me, let him deny himself, and take up his cross, and follow me. For whosoever will save his life shall lose it; but whosoever shall lose his life for my sake and the gospel's, the same shall save it."},
|
||||
{"reference": "Mark 10:45", "text": "For even the Son of man came not to be ministered unto, but to minister, and to give his life a ransom for many."},
|
||||
{"reference": "Mark 15:39", "text": "And when the centurion, which stood over against him, saw that he so cried out, and gave up the ghost, he said, Truly this man was the Son of God."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Preparation and Early Ministry", "chapters": "1:1-13", "description": "John the Baptist, baptism, temptation"},
|
||||
{"section": "Galilean Ministry", "chapters": "1:14-6:29", "description": "Calling disciples, miracles, controversies, parables"},
|
||||
{"section": "Wider Ministry", "chapters": "6:30-8:26", "description": "Feeding 5000, walking on water, feeding 4000"},
|
||||
{"section": "Journey to Jerusalem", "chapters": "8:27-10:52", "description": "Peter's confession, passion predictions, discipleship teaching"},
|
||||
{"section": "Ministry in Jerusalem", "chapters": "11-13", "description": "Triumphal entry, temple cleansing, Olivet discourse"},
|
||||
{"section": "Passion and Resurrection", "chapters": "14-16", "description": "Last Supper, Gethsemane, trial, crucifixion, empty tomb"}
|
||||
],
|
||||
"historical_context": "Early church tradition identifies John Mark as Peter's interpreter who wrote down Peter's preaching in Rome. Mark may have been written shortly before the destruction of Jerusalem in AD 70, possibly during Nero's persecution when Roman Christians needed encouragement for suffering. The Gospel's explanations of Jewish customs suggest a Gentile audience.",
|
||||
"literary_style": "Mark's style is vivid and fast-paced. Present tense verbs, concrete details, and emotional notes bring scenes to life. The 'messianic secret'—Jesus' commands to silence about His identity—creates narrative tension. The Gospel is structured around three passion predictions, each followed by disciples' misunderstanding and teaching on true discipleship. The ending (whether at 16:8 or with the longer ending) has been debated throughout church history.",
|
||||
"christ_in_book": "Mark's opening verse announces Jesus as 'Christ' (Messiah) and 'Son of God'—titles the narrative progressively reveals. The first half shows His power over every opposing force; the second half reveals His choice to suffer. The centurion's confession at the cross completes what demons knew from the beginning. Jesus is the Servant Lord who conquers through suffering and calls followers to the same path.",
|
||||
"practical_application": "Mark confronts us with the cost of following Jesus—denying self, taking up the cross, losing life to find it. The disciples' repeated failures encourage us that Jesus patiently works with flawed followers. The Gospel challenges our desire for status with Jesus' model of servant leadership. Mark's Jesus is powerful enough to trust and humble enough to imitate. The call is clear: 'Follow me.'"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"name": "Matthew",
|
||||
"abbreviation": "Matt",
|
||||
"testament": "New Testament",
|
||||
"position": 40,
|
||||
"chapters": 28,
|
||||
"category": "Gospels",
|
||||
"author": "Matthew (Levi), the tax collector and apostle",
|
||||
"date_written": "c. AD 50-70",
|
||||
"introduction": "Matthew presents Jesus as the long-awaited King of the Jews, the fulfillment of Old Testament prophecy. Written primarily for a Jewish audience, the Gospel traces Jesus' lineage to Abraham and David, demonstrates His messianic credentials through fulfilled prophecy, and presents His authoritative teaching in five major discourses. Matthew bridges the Testaments, showing how Jesus inaugurates the kingdom of heaven while founding His church.",
|
||||
"key_themes": [
|
||||
"Jesus as the promised Messiah and King",
|
||||
"Fulfillment of Old Testament prophecy",
|
||||
"The kingdom of heaven",
|
||||
"Jesus as the new Moses",
|
||||
"The church founded by Jesus",
|
||||
"The Great Commission"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Matthew 1:21", "text": "And she shall bring forth a son, and thou shalt call his name JESUS: for he shall save his people from their sins."},
|
||||
{"reference": "Matthew 5:17", "text": "Think not that I am come to destroy the law, or the prophets: I am not come to destroy, but to fulfil."},
|
||||
{"reference": "Matthew 16:16-18", "text": "And Simon Peter answered and said, Thou art the Christ, the Son of the living God... And I say also unto thee, That thou art Peter, and upon this rock I will build my church; and the gates of hell shall not prevail against it."},
|
||||
{"reference": "Matthew 28:18-20", "text": "And Jesus came and spake unto them, saying, All power is given unto me in heaven and in earth. Go ye therefore, and teach all nations, baptizing them in the name of the Father, and of the Son, and of the Holy Ghost: Teaching them to observe all things whatsoever I have commanded you: and, lo, I am with you alway, even unto the end of the world."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Birth and Preparation", "chapters": "1-4", "description": "Genealogy, nativity, John the Baptist, temptation"},
|
||||
{"section": "Sermon on the Mount", "chapters": "5-7", "description": "Kingdom ethics and righteousness"},
|
||||
{"section": "Mighty Works", "chapters": "8-9", "description": "Miracles demonstrating Jesus' authority"},
|
||||
{"section": "Mission Discourse", "chapters": "10", "description": "Sending and instructions for the Twelve"},
|
||||
{"section": "Opposition and Parables", "chapters": "11-13", "description": "Rejection, kingdom parables"},
|
||||
{"section": "Private Ministry", "chapters": "14-18", "description": "Feeding multitudes, Peter's confession, Transfiguration"},
|
||||
{"section": "Journey to Jerusalem", "chapters": "19-23", "description": "Teaching, entry, temple cleansing, woes"},
|
||||
{"section": "Olivet Discourse", "chapters": "24-25", "description": "End times, parables of readiness"},
|
||||
{"section": "Passion and Resurrection", "chapters": "26-28", "description": "Last Supper, arrest, trial, crucifixion, resurrection, commission"}
|
||||
],
|
||||
"historical_context": "Matthew wrote primarily for Jewish readers, explaining how Jesus fulfilled messianic expectations while founding a community that would include Gentiles. The book addresses the church's relationship to Judaism after Jesus' rejection by Israel's leaders. Early church tradition unanimously attributes the Gospel to the apostle Matthew, also called Levi the tax collector.",
|
||||
"literary_style": "Matthew organizes Jesus' teaching into five major discourses, possibly paralleling the five books of Moses. The formula 'that it might be fulfilled' connects Jesus to Old Testament prophecy. Matthew includes more of Jesus' teaching than Mark, with extensive ethical instruction. The Gospel moves from Jesus' presentation to Israel to His founding of the church to His commissioning the mission to all nations.",
|
||||
"christ_in_book": "Matthew presents Jesus as Prophet, Priest, and King. He is 'God with us' (Emmanuel) at His birth and promises to be with His people 'always' at the end. He is David's Son and Lord, the suffering Servant who gives His life as ransom, the Son of Man who will return in glory. His five discourses establish Him as the new Moses giving the law of the kingdom. He is the rejected cornerstone who builds His church.",
|
||||
"practical_application": "Matthew teaches what it means to live under Christ's kingship. The Sermon on the Mount provides the ethic of the kingdom—deeper righteousness that exceeds external conformity. The parables reveal how the kingdom works in surprising ways. The Great Commission gives the church its ongoing mission. Matthew challenges us to recognize Jesus as King, follow His teaching, and make disciples of all nations."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Micah",
|
||||
"abbreviation": "Mic",
|
||||
"testament": "Old Testament",
|
||||
"position": 33,
|
||||
"chapters": 7,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Micah of Moresheth",
|
||||
"date_written": "c. 735-700 BC",
|
||||
"introduction": "Micah, a rural prophet contemporary with Isaiah, denounced the social injustice and religious corruption of his day. He prophesied doom for both Samaria and Jerusalem yet also proclaimed hope—including the famous prophecy that the Messiah would be born in Bethlehem. Micah's summary of true religion—do justly, love mercy, walk humbly with God—remains one of Scripture's most memorable ethical statements.",
|
||||
"key_themes": [
|
||||
"Social injustice and oppression of the poor",
|
||||
"Religious corruption and false prophets",
|
||||
"Judgment on Jerusalem and Samaria",
|
||||
"The coming Ruler from Bethlehem",
|
||||
"The essence of true religion",
|
||||
"God's incomparable forgiveness"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Micah 5:2", "text": "But thou, Bethlehem Ephratah, though thou be little among the thousands of Judah, yet out of thee shall he come forth unto me that is to be ruler in Israel; whose goings forth have been from of old, from everlasting."},
|
||||
{"reference": "Micah 6:8", "text": "He hath shewed thee, O man, what is good; and what doth the LORD require of thee, but to do justly, and to love mercy, and to walk humbly with thy God?"},
|
||||
{"reference": "Micah 7:18-19", "text": "Who is a God like unto thee, that pardoneth iniquity, and passeth by the transgression of the remnant of his heritage? he retaineth not his anger for ever, because he delighteth in mercy. He will turn again, he will have compassion upon us; he will subdue our iniquities; and thou wilt cast all their sins into the depths of the sea."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Judgment Announced", "chapters": "1-2", "description": "Doom on Samaria and Jerusalem, oppression condemned"},
|
||||
{"section": "Leaders Indicted", "chapters": "3", "description": "Rulers, prophets, and priests denounced"},
|
||||
{"section": "Future Hope", "chapters": "4-5", "description": "Mountain of the LORD, Bethlehem's ruler, remnant restored"},
|
||||
{"section": "God's Lawsuit", "chapters": "6", "description": "The LORD's case against Israel, requirements stated"},
|
||||
{"section": "Lament and Hope", "chapters": "7", "description": "Sorrow over corruption, trust in God's mercy"}
|
||||
],
|
||||
"historical_context": "Micah prophesied during the reigns of Jotham, Ahaz, and Hezekiah in Judah (roughly 735-700 BC). He witnessed the fall of Samaria to Assyria (722 BC) and Sennacherib's invasion of Judah (701 BC). Coming from the rural town of Moresheth, Micah understood the impact of elite exploitation on common people. His prophecies influenced Hezekiah's reforms (Jeremiah 26:18-19).",
|
||||
"literary_style": "Micah alternates between judgment oracles and hope passages, creating a pattern of doom-hope-doom-hope. His style is direct and passionate, with vivid imagery. Wordplays on town names in chapter 1 create a lament. The courtroom scene in chapter 6 is dramatic. The book's conclusion is a hymn of confidence in God's forgiving character—a play on the prophet's name, which means 'Who is like the LORD?'",
|
||||
"christ_in_book": "Micah 5:2 provides the specific prophecy that the Messiah would be born in Bethlehem—quoted by Jewish scholars to Herod and recorded in Matthew 2:6. The 'goings forth from everlasting' indicates the Messiah's eternal nature. The vision of nations streaming to God's mountain (4:1-3) anticipates Gentile inclusion. Christ embodies the requirements of Micah 6:8 perfectly—justice, mercy, and humble walking with God.",
|
||||
"practical_application": "Micah challenges us to examine whether our religion produces justice and mercy or merely ritual. His requirements—do justly, love mercy, walk humbly—provide a practical test of authentic faith. The book warns against exploiting the vulnerable and exposes how religious leaders can become complicit in injustice. Yet it ends with confident hope in God's mercy—He delights to pardon, He casts sins into the sea. The question 'Who is a God like you?' invites worship."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "Nahum",
|
||||
"abbreviation": "Nah",
|
||||
"testament": "Old Testament",
|
||||
"position": 34,
|
||||
"chapters": 3,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Nahum the Elkoshite",
|
||||
"date_written": "c. 660-612 BC",
|
||||
"introduction": "Nahum announces the doom of Nineveh, capital of the Assyrian Empire. Unlike Jonah, which records Nineveh's repentance a century earlier, Nahum pronounces irrevocable judgment on a city that had returned to cruelty and arrogance. The Assyrians had destroyed the northern kingdom and terrorized the ancient world. Now their turn had come. Nahum declares that God is both avenging judge and refuge for those who trust Him.",
|
||||
"key_themes": [
|
||||
"God's righteous vengeance against evil",
|
||||
"The fall of oppressive empires",
|
||||
"Divine justice and patience",
|
||||
"God as refuge for His people",
|
||||
"The certainty of judgment",
|
||||
"The end of Assyrian cruelty"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Nahum 1:2-3", "text": "God is jealous, and the LORD revengeth; the LORD revengeth, and is furious; the LORD will take vengeance on his adversaries, and he reserveth wrath for his enemies. The LORD is slow to anger, and great in power, and will not at all acquit the wicked."},
|
||||
{"reference": "Nahum 1:7", "text": "The LORD is good, a strong hold in the day of trouble; and he knoweth them that trust in him."},
|
||||
{"reference": "Nahum 1:15", "text": "Behold upon the mountains the feet of him that bringeth good tidings, that publisheth peace! O Judah, keep thy solemn feasts, perform thy vows: for the wicked shall no more pass through thee; he is utterly cut off."},
|
||||
{"reference": "Nahum 3:19", "text": "There is no healing of thy bruise; thy wound is grievous: all that hear the bruit of thee shall clap the hands over thee: for upon whom hath not thy wickedness passed continually?"}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "God's Majesty and Wrath", "chapters": "1", "description": "Theophany, God as avenger and refuge"},
|
||||
{"section": "The Siege of Nineveh", "chapters": "2", "description": "Vivid description of the city's fall"},
|
||||
{"section": "Reasons for Judgment", "chapters": "3", "description": "Nineveh's crimes, no escape from doom"}
|
||||
],
|
||||
"historical_context": "Nahum prophesied between the fall of Thebes to Assyria (663 BC, referenced in 3:8) and Nineveh's destruction (612 BC). Assyria's century of dominance had been marked by unprecedented cruelty. They impaled enemies, deported populations, and systematically terrorized conquered peoples. Their own monuments boasted of atrocities. But empires rise and fall—Nineveh was destroyed by Babylon and the Medes in 612 BC, exactly as Nahum predicted.",
|
||||
"literary_style": "Nahum is powerful Hebrew poetry. The first chapter contains an acrostic hymn celebrating God's power. The battle scenes in chapters 2-3 are cinematically vivid—chariots, flashing swords, piled corpses, rivers of blood. The irony is biting: Nineveh, which plundered cities, will be plundered; the lion's den will have no more prey. The book's conclusion pictures the world applauding Nineveh's fall.",
|
||||
"christ_in_book": "Nahum 1:15 ('the feet of him who brings good tidings') is echoed in Isaiah 52:7 and applied to gospel preachers in Romans 10:15. God's patience followed by decisive judgment anticipates the pattern of Christ's first and second comings. The refuge found in God (1:7) is fully available in Christ. The judgment of oppressive powers points toward the final judgment Christ will execute.",
|
||||
"practical_application": "Nahum assures sufferers that God sees injustice and will act—His patience is not indifference. It warns the powerful that cruelty and arrogance will be repaid. The book prevents us from thinking God's mercy means immunity from consequences—Nineveh repented once but returned to wickedness. For believers, Nahum provides comfort: 'The LORD is good, a stronghold in the day of trouble.' Empires fall; God remains."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Nehemiah",
|
||||
"abbreviation": "Neh",
|
||||
"testament": "Old Testament",
|
||||
"position": 16,
|
||||
"chapters": 13,
|
||||
"category": "History",
|
||||
"author": "Nehemiah (with additions)",
|
||||
"date_written": "c. 430-400 BC",
|
||||
"introduction": "Nehemiah records the rebuilding of Jerusalem's walls and the social and spiritual reforms that followed. Nehemiah, cupbearer to the Persian king, received permission to return and lead the construction project. Despite intense opposition, the walls were completed in just 52 days. The book then describes the spiritual renewal that followed, with Ezra reading the law and the people recommitting to the covenant.",
|
||||
"key_themes": [
|
||||
"Burden for God's people and city",
|
||||
"Prayer as the foundation of action",
|
||||
"Leadership amid opposition",
|
||||
"Community cooperation and sacrifice",
|
||||
"Covenant renewal and reformation",
|
||||
"The integration of work and worship"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Nehemiah 1:4", "text": "And it came to pass, when I heard these words, that I sat down and wept, and mourned certain days, and fasted, and prayed before the God of heaven."},
|
||||
{"reference": "Nehemiah 2:20", "text": "Then answered I them, and said unto them, The God of heaven, he will prosper us; therefore we his servants will arise and build."},
|
||||
{"reference": "Nehemiah 4:14", "text": "Be not ye afraid of them: remember the LORD, which is great and terrible, and fight for your brethren, your sons, and your daughters, your wives, and your houses."},
|
||||
{"reference": "Nehemiah 8:10", "text": "Then he said unto them, Go your way, eat the fat, and drink the sweet, and send portions unto them for whom nothing is prepared: for this day is holy unto our Lord: neither be ye sorry; for the joy of the LORD is your strength."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Nehemiah's Burden and Journey", "chapters": "1-2", "description": "News from Jerusalem, prayer, royal permission, inspection"},
|
||||
{"section": "Rebuilding the Walls", "chapters": "3-7", "description": "Workers listed, opposition faced, creative solutions, completion"},
|
||||
{"section": "Spiritual Renewal", "chapters": "8-10", "description": "Law read, confession, covenant renewed"},
|
||||
{"section": "Population and Dedication", "chapters": "11-12", "description": "Jerusalem resettled, walls dedicated with celebration"},
|
||||
{"section": "Final Reforms", "chapters": "13", "description": "Nehemiah's second term and corrective measures"}
|
||||
],
|
||||
"historical_context": "Nehemiah arrived in Jerusalem in 445 BC, about thirteen years after Ezra. The Persian Empire was stable under Artaxerxes I. Jerusalem's walls had remained broken since Nebuchadnezzar's destruction 141 years earlier, leaving the community vulnerable and demoralized. Samaritan and regional leaders opposed the rebuilding, seeing it as a threat to their influence. Nehemiah's position as royal cupbearer gave him unusual access and credibility.",
|
||||
"literary_style": "Much of Nehemiah is first-person memoir, giving intimate access to his prayers, strategies, and frustrations. The famous 'arrow prayers' (quick petitions amid activity) reveal a life of constant communion with God. The book includes lists, prayers, and narrative. The contrast between Nehemiah's vigorous action and his deep spirituality is striking. His final repeated refrain, 'Remember me, O my God,' provides a personal note.",
|
||||
"christ_in_book": "Nehemiah as the king's cupbearer who becomes his people's deliverer pictures Christ who left heaven's glory to save His people. The rebuilt walls that protect God's people foreshadow Christ building His church. The covenant renewal points to the new covenant in Christ's blood. The integration of spiritual and physical restoration anticipates the gospel's comprehensive salvation.",
|
||||
"practical_application": "Nehemiah models leadership that combines prayer and action, vision and practical organization, personal sacrifice and community mobilization. It teaches that opposition should be expected but need not defeat God's work. The book shows how to handle criticism, conspiracy, and compromise without losing focus. The joy of the LORD as strength (8:10) encourages believers facing difficult circumstances. Nehemiah's reforms remind us that spiritual gains require ongoing vigilance."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Numbers",
|
||||
"abbreviation": "Num",
|
||||
"testament": "Old Testament",
|
||||
"position": 4,
|
||||
"chapters": 36,
|
||||
"category": "Law (Torah/Pentateuch)",
|
||||
"author": "Moses",
|
||||
"date_written": "c. 1446-1406 BC",
|
||||
"introduction": "Numbers, named for the two censuses of Israel it contains, chronicles the wilderness wanderings from Sinai to the plains of Moab. It is a book of transition—and tragedy. A journey that should have taken weeks stretched to forty years due to unbelief. Numbers reveals both God's patience with a complaining people and His justice that kept an entire generation from the Promised Land. Yet it also demonstrates His unwavering faithfulness to His promises.",
|
||||
"key_themes": [
|
||||
"The consequences of unbelief and disobedience",
|
||||
"God's faithfulness despite human failure",
|
||||
"The journey of faith through wilderness seasons",
|
||||
"Leadership challenges and God's provision",
|
||||
"Holiness in the camp",
|
||||
"The second generation's hope"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Numbers 6:24-26", "text": "The LORD bless thee, and keep thee: The LORD make his face shine upon thee, and be gracious unto thee: The LORD lift up his countenance upon thee, and give thee peace."},
|
||||
{"reference": "Numbers 14:18", "text": "The LORD is longsuffering, and of great mercy, forgiving iniquity and transgression, and by no means clearing the guilty, visiting the iniquity of the fathers upon the children unto the third and fourth generation."},
|
||||
{"reference": "Numbers 23:19", "text": "God is not a man, that he should lie; neither the son of man, that he should repent: hath he said, and shall he not do it? or hath he spoken, and shall he not make it good?"},
|
||||
{"reference": "Numbers 14:21", "text": "But as truly as I live, all the earth shall be filled with the glory of the LORD."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "At Sinai: Preparation", "chapters": "1-10", "description": "Census, camp organization, Levite duties, and departure from Sinai"},
|
||||
{"section": "Sinai to Kadesh: Failure", "chapters": "11-12", "description": "Complaints, quail judgment, and Miriam's rebellion"},
|
||||
{"section": "At Kadesh: Rejection", "chapters": "13-14", "description": "The twelve spies and Israel's refusal to enter Canaan"},
|
||||
{"section": "Wilderness Wanderings", "chapters": "15-19", "description": "Korah's rebellion, Aaron's rod, and the red heifer"},
|
||||
{"section": "Kadesh to Moab: Transition", "chapters": "20-21", "description": "Miriam and Aaron's deaths, the bronze serpent"},
|
||||
{"section": "On the Plains of Moab", "chapters": "22-36", "description": "Balaam's oracles, final preparations, and tribal inheritances"}
|
||||
],
|
||||
"historical_context": "Numbers covers approximately 39 years, from the second year after the Exodus to the fortieth year, when the new generation stood ready to enter Canaan. The book bridges the giving of the Law at Sinai with the final instructions in Deuteronomy. It records actual historical events that shaped Israel's national consciousness and became frequent points of reference in later Scripture.",
|
||||
"literary_style": "Numbers alternates between census data, legal material, and dramatic narrative. The travel itinerary provides structure, while key events (the spy report, Korah's rebellion, Balaam's oracles) are told with vivid detail. The contrast between divine blessing through Balaam and Israel's subsequent sin at Baal Peor creates powerful irony. Poetry appears in the priestly blessing and Balaam's prophecies.",
|
||||
"christ_in_book": "The bronze serpent lifted up in the wilderness is directly applied to Christ by Jesus Himself (John 3:14-15). The cities of refuge point to Christ as our refuge from the avenger. The smitten rock pictures Christ smitten for us. Balaam's prophecy of a 'Star out of Jacob' and a 'Sceptre out of Israel' anticipates the Messiah. The red heifer's ashes for purification foreshadow Christ's cleansing sacrifice.",
|
||||
"practical_application": "Numbers warns against the dangers of complaining, unbelief, and presumption. It shows that wilderness experiences, though difficult, can be times of growth and preparation. The book encourages faithfulness in the face of opposition and teaches that God's promises remain certain even when human failure delays their fulfillment. It reminds us that how we respond to trials determines whether hardship becomes a brief test or a prolonged wandering."
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "Obadiah",
|
||||
"abbreviation": "Obad",
|
||||
"testament": "Old Testament",
|
||||
"position": 31,
|
||||
"chapters": 1,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Obadiah",
|
||||
"date_written": "c. 586-550 BC (or possibly earlier)",
|
||||
"introduction": "Obadiah is the shortest book in the Old Testament—just 21 verses—but delivers a powerful message against Edom. When Babylon destroyed Jerusalem, Edom (descendants of Esau) rejoiced over their brother Jacob's calamity and even participated in the destruction. Obadiah announces Edom's complete annihilation while promising that God's kingdom will ultimately prevail. The ancient sibling rivalry between Jacob and Esau reaches its divine resolution.",
|
||||
"key_themes": [
|
||||
"Judgment on Edom for betraying Israel",
|
||||
"The sin of pride and its consequences",
|
||||
"God's justice against those who harm His people",
|
||||
"The Day of the LORD and universal judgment",
|
||||
"The ultimate triumph of God's kingdom"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Obadiah 1:3-4", "text": "The pride of thine heart hath deceived thee, thou that dwellest in the clefts of the rock, whose habitation is high; that saith in his heart, Who shall bring me down to the ground? Though thou exalt thyself as the eagle, and though thou set thy nest among the stars, thence will I bring thee down, saith the LORD."},
|
||||
{"reference": "Obadiah 1:10", "text": "For thy violence against thy brother Jacob shame shall cover thee, and thou shalt be cut off for ever."},
|
||||
{"reference": "Obadiah 1:15", "text": "For the day of the LORD is near upon all the heathen: as thou hast done, it shall be done unto thee: thy reward shall return upon thine own head."},
|
||||
{"reference": "Obadiah 1:21", "text": "And saviours shall come up on mount Zion to judge the mount of Esau; and the kingdom shall be the LORD's."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Edom's Coming Destruction", "chapters": "1:1-9", "description": "Edom's pride and coming humiliation"},
|
||||
{"section": "Edom's Crimes", "chapters": "1:10-14", "description": "Violence against brother Jacob"},
|
||||
{"section": "The Day of the LORD", "chapters": "1:15-21", "description": "Universal judgment, Israel's restoration"}
|
||||
],
|
||||
"historical_context": "Edom occupied the mountainous region southeast of the Dead Sea, with their capital Petra carved into rock cliffs. The Edomites descended from Esau, Jacob's twin brother, making them Israel's closest relatives. Despite this kinship, Edom consistently opposed Israel throughout history. Their worst betrayal came in 586 BC, when they assisted Babylon and gloated over Jerusalem's destruction (see Psalm 137:7).",
|
||||
"literary_style": "Despite its brevity, Obadiah is artistically crafted. The book moves from Edom's arrogance (dwelling in rocky heights) to their humiliation (brought down). Vivid imagery depicts Edom's allies turning against them and their complete plunder. The ironic reversals are striking—Edom who stood at crossroads to cut off escapees will themselves have no survivors. The book ends with the grand vision of God's kingdom.",
|
||||
"christ_in_book": "The 'saviors' who judge Esau's mountain (v. 21) find ultimate fulfillment in Christ, the Savior who judges all nations. The kingdom that belongs to the LORD is Christ's kingdom. The principle of nations being judged for how they treated Israel extends to how nations treat Christ's people. Edom's pride brought down anticipates the humbling of all who exalt themselves against God.",
|
||||
"practical_application": "Obadiah warns that pride leads to downfall and that violence against God's people will not go unpunished. The principle 'as you have done, it will be done to you' affirms divine justice. The book cautions against taking pleasure in others' misfortune, especially family or those who share our heritage. It encourages the persecuted that God sees injustice and will act. The final word—'the kingdom shall be the LORD's'—grounds hope in God's ultimate triumph."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Philemon",
|
||||
"abbreviation": "Phlm",
|
||||
"testament": "New Testament",
|
||||
"position": 57,
|
||||
"chapters": 1,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 60-62",
|
||||
"introduction": "Philemon is Paul's shortest letter, a personal appeal on behalf of Onesimus, a runaway slave who had become a Christian under Paul's ministry in Rome. Paul sends Onesimus back to his master Philemon, asking that he be received not as a slave but as a beloved brother. The letter demonstrates the gospel's power to transform relationships across social boundaries and provides a model of Christian persuasion and reconciliation.",
|
||||
"key_themes": [
|
||||
"Reconciliation and forgiveness",
|
||||
"The gospel transforming social relationships",
|
||||
"Christian brotherhood transcending status",
|
||||
"Intercession and advocacy",
|
||||
"Voluntary love rather than compulsion",
|
||||
"The principle of imputation"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Philemon 1:10-11", "text": "I beseech thee for my son Onesimus, whom I have begotten in my bonds: Which in time past was to thee unprofitable, but now profitable to thee and to me."},
|
||||
{"reference": "Philemon 1:15-16", "text": "For perhaps he therefore departed for a season, that thou shouldest receive him for ever; Not now as a servant, but above a servant, a brother beloved, specially to me, but how much more unto thee, both in the flesh, and in the Lord?"},
|
||||
{"reference": "Philemon 1:17-18", "text": "If thou count me therefore a partner, receive him as myself. If he hath wronged thee, or oweth thee ought, put that on mine account."},
|
||||
{"reference": "Philemon 1:6", "text": "That the communication of thy faith may become effectual by the acknowledging of every good thing which is in you in Christ Jesus."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Greeting", "chapters": "1:1-3", "description": "To Philemon, Apphia, Archippus, and church"},
|
||||
{"section": "Thanksgiving", "chapters": "1:4-7", "description": "Philemon's love and faith"},
|
||||
{"section": "Appeal for Onesimus", "chapters": "1:8-21", "description": "Request to receive him as brother"},
|
||||
{"section": "Conclusion", "chapters": "1:22-25", "description": "Request, greetings, blessing"}
|
||||
],
|
||||
"historical_context": "Philemon was a wealthy Christian in Colossae whose house hosted a church. Onesimus, his slave, apparently stole from him and fled to Rome. Providentially, Onesimus encountered Paul (probably in prison) and became a Christian. Paul faced a dilemma—legally Onesimus should return, but their brotherhood changed everything. Paul writes to navigate this sensitive situation, making Philemon an offer he could hardly refuse.",
|
||||
"literary_style": "Philemon is a masterpiece of ancient rhetoric—warm, tactful, persuasive, with gentle humor. Paul establishes common ground before making his request. He uses wordplay (Onesimus means 'useful,' and Paul says he was once useless but now useful). The letter balances appeal to authority (Paul could command) with appeal to love (he prefers to ask). The structure builds to the request at the letter's center.",
|
||||
"christ_in_book": "The letter beautifully illustrates gospel realities. Paul's offer—'put that on my account'—pictures Christ's imputation, taking our debt and giving us His standing. Receiving Onesimus 'as myself' mirrors our reception by God in Christ. The transformation from worthless slave to beloved brother illustrates regeneration. Christ's redemption breaks down social barriers, creating a new community of equals before God.",
|
||||
"practical_application": "Philemon shows how the gospel transforms relationships without necessarily overturning social structures immediately. Christian brotherhood is deeper than social status. Forgiveness and reconciliation are expected among believers. Paul's approach models appealing to conscience and love rather than wielding authority. The letter raises important questions about how faith should affect unjust systems. It remains a powerful example of Christian advocacy and mediation."
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "Philippians",
|
||||
"abbreviation": "Phil",
|
||||
"testament": "New Testament",
|
||||
"position": 50,
|
||||
"chapters": 4,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 61-62",
|
||||
"introduction": "Philippians is Paul's letter of joy, written from prison to his beloved church in Philippi. Despite imprisonment, Paul overflows with joy because Christ is proclaimed and the gospel advances. The letter contains the great Christ-hymn describing Jesus' self-emptying and exaltation. Paul calls believers to have the same humble mind as Christ, to rejoice always, and to find contentment in all circumstances through Christ's strength.",
|
||||
"key_themes": [
|
||||
"Joy in all circumstances",
|
||||
"The example of Christ's humility",
|
||||
"Partnership in the gospel",
|
||||
"Pressing on toward the goal",
|
||||
"Contentment through Christ",
|
||||
"Unity and like-mindedness"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Philippians 1:21", "text": "For to me to live is Christ, and to die is gain."},
|
||||
{"reference": "Philippians 2:5-8", "text": "Let this mind be in you, which was also in Christ Jesus: Who, being in the form of God, thought it not robbery to be equal with God: But made himself of no reputation, and took upon him the form of a servant, and was made in the likeness of men: And being found in fashion as a man, he humbled himself, and became obedient unto death, even the death of the cross."},
|
||||
{"reference": "Philippians 3:13-14", "text": "Brethren, I count not myself to have apprehended: but this one thing I do, forgetting those things which are behind, and reaching forth unto those things which are before, I press toward the mark for the prize of the high calling of God in Christ Jesus."},
|
||||
{"reference": "Philippians 4:6-7", "text": "Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God. And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus."},
|
||||
{"reference": "Philippians 4:13", "text": "I can do all things through Christ which strengtheneth me."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Paul's Circumstances and Joy", "chapters": "1", "description": "Thanksgiving, imprisonment advances gospel, to live is Christ"},
|
||||
{"section": "Christ's Example and Our Response", "chapters": "2", "description": "The Christ-hymn, working out salvation, Timothy and Epaphroditus"},
|
||||
{"section": "Pressing Toward the Goal", "chapters": "3", "description": "Warning against Judaizers, Paul's testimony, heavenly citizenship"},
|
||||
{"section": "Practical Exhortations", "chapters": "4", "description": "Rejoice, pray, contentment, thanksgiving for gift"}
|
||||
],
|
||||
"historical_context": "Philippi was a Roman colony in Macedonia where Paul founded Europe's first church (Acts 16). Lydia and the Philippian jailer were early converts. The church had a special relationship with Paul, supporting him financially multiple times. Paul wrote from imprisonment (likely Rome) after receiving a gift through Epaphroditus, who had become ill while serving Paul. The letter thanks them and updates his situation.",
|
||||
"literary_style": "Philippians is warm and personal, more like a friend's letter than a treatise. The Christ-hymn (2:6-11) is poetic and may reflect early Christian worship. The letter's structure is informal, moving between thanksgiving, exhortation, personal updates, and practical instruction. Joy/rejoice vocabulary appears sixteen times. Paul's affection for the Philippians is evident throughout.",
|
||||
"christ_in_book": "The Christ-hymn (2:6-11) is Philippians' theological center—Christ's pre-existence, incarnation, humiliation, death, and exaltation. He is both example and enabler of Christian living. Paul knows Him (3:10), gains through Him (4:13), and finds life in Him (1:21). The name of Jesus receives universal homage. Christ is the goal Paul presses toward and the one through whom he can do all things.",
|
||||
"practical_application": "Philippians shows that joy is possible in any circumstance when Christ is central. It calls for unity through humility, taking Christ's self-emptying as our example. Paul models pressing forward rather than resting on past achievements or failures. The antidote to anxiety is prayer with thanksgiving. Contentment is learned, not automatic. The peace of God guards our hearts and minds. Philippians invites us to make Christ our life's summary: 'For to me to live is Christ.'"
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "Proverbs",
|
||||
"abbreviation": "Prov",
|
||||
"testament": "Old Testament",
|
||||
"position": 20,
|
||||
"chapters": 31,
|
||||
"category": "Wisdom/Poetry",
|
||||
"author": "Solomon (primarily), Agur, Lemuel",
|
||||
"date_written": "c. 970-700 BC",
|
||||
"introduction": "Proverbs is practical wisdom for daily living. The book teaches that true wisdom begins with fearing the LORD and expresses itself in skillful, righteous living. While Job and Ecclesiastes wrestle with wisdom's limits, Proverbs confidently asserts that wise choices generally lead to blessing and foolish ones to ruin. These memorable sayings cover relationships, work, speech, wealth, and character—timeless guidance for navigating life successfully.",
|
||||
"key_themes": [
|
||||
"The fear of the LORD as wisdom's foundation",
|
||||
"Wisdom personified and calling",
|
||||
"The contrast between wisdom and folly",
|
||||
"Practical guidance for daily decisions",
|
||||
"Speech—its power and proper use",
|
||||
"Diligence, integrity, and discipline"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Proverbs 1:7", "text": "The fear of the LORD is the beginning of knowledge: but fools despise wisdom and instruction."},
|
||||
{"reference": "Proverbs 3:5-6", "text": "Trust in the LORD with all thine heart; and lean not unto thine own understanding. In all thy ways acknowledge him, and he shall direct thy paths."},
|
||||
{"reference": "Proverbs 4:23", "text": "Keep thy heart with all diligence; for out of it are the issues of life."},
|
||||
{"reference": "Proverbs 9:10", "text": "The fear of the LORD is the beginning of wisdom: and the knowledge of the holy is understanding."},
|
||||
{"reference": "Proverbs 22:6", "text": "Train up a child in the way he should go: and when he is old, he will not depart from it."},
|
||||
{"reference": "Proverbs 31:30", "text": "Favour is deceitful, and beauty is vain: but a woman that feareth the LORD, she shall be praised."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Preamble: Purpose", "chapters": "1:1-7", "description": "Introduction and foundation"},
|
||||
{"section": "Wisdom's Call", "chapters": "1-9", "description": "Father to son instructions, Wisdom personified"},
|
||||
{"section": "Solomon's Proverbs I", "chapters": "10-22:16", "description": "Contrasts between righteous and wicked"},
|
||||
{"section": "Words of the Wise", "chapters": "22:17-24:34", "description": "Additional wisdom sayings"},
|
||||
{"section": "Solomon's Proverbs II", "chapters": "25-29", "description": "Compiled by Hezekiah's men"},
|
||||
{"section": "Agur and Lemuel", "chapters": "30-31", "description": "Numerical sayings, the excellent wife"}
|
||||
],
|
||||
"historical_context": "Solomon spoke 3,000 proverbs (1 Kings 4:32), and this book contains a selection. Wisdom literature was common in the ancient Near East; Israel's distinctive contribution was grounding wisdom in covenant relationship with the LORD. Hezekiah's scholars compiled additional material (25:1). The book addresses universal human experience while assuming Israel's covenant context.",
|
||||
"literary_style": "Proverbs primarily uses the Hebrew mashal—a pithy, memorable saying using parallelism. Chapters 1-9 contain longer wisdom poems personifying Wisdom and Folly as women calling out to the simple. The sentence proverbs (10-29) typically use antithetical parallelism, contrasting the wise/righteous with the foolish/wicked. Numerical sayings and acrostic patterns add variety. The language is concrete and vivid.",
|
||||
"christ_in_book": "Christ is 'the wisdom of God' (1 Corinthians 1:24). The personified Wisdom of chapters 1-9 finds fulfillment in Christ, who was 'with God' before creation (8:22-31; cf. John 1:1-3). Christ embodies perfect wisdom and offers it to all who ask (James 1:5). The call of Wisdom mirrors Christ's invitation to come and find life. In Christ 'are hid all the treasures of wisdom and knowledge' (Colossians 2:3).",
|
||||
"practical_application": "Proverbs offers guidance for every area of life: choosing friends, using money, controlling the tongue, working diligently, raising children, and building character. It teaches that small, daily choices shape our destiny. The book warns against the seductions of folly—the shortcuts that lead to ruin. It encourages us to seek wisdom actively, to welcome correction, and to fear the LORD in all we do. Wisdom is more valuable than silver and gold."
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"name": "Psalms",
|
||||
"abbreviation": "Ps",
|
||||
"testament": "Old Testament",
|
||||
"position": 19,
|
||||
"chapters": 150,
|
||||
"category": "Wisdom/Poetry",
|
||||
"author": "David (73), Asaph (12), Sons of Korah (11), Solomon (2), Moses (1), Ethan (1), Anonymous (50)",
|
||||
"date_written": "c. 1410-450 BC (collected over 1000 years)",
|
||||
"introduction": "Psalms is the hymnbook of ancient Israel and the prayer book of the church for millennia. These 150 poems express the full range of human emotion before God—praise and lament, thanksgiving and complaint, confidence and despair. The Psalms teach us how to pray, how to worship, and how to pour out our hearts honestly to God. Jesus quoted Psalms more than any other Old Testament book, and the early church sang these songs.",
|
||||
"key_themes": [
|
||||
"Praise and worship of God",
|
||||
"Lament and trust in suffering",
|
||||
"The righteous and the wicked",
|
||||
"God's kingship and the Davidic king",
|
||||
"Creation and providence",
|
||||
"The Word of God"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Psalm 1:1-2", "text": "Blessed is the man that walketh not in the counsel of the ungodly, nor standeth in the way of sinners, nor sitteth in the seat of the scornful. But his delight is in the law of the LORD; and in his law doth he meditate day and night."},
|
||||
{"reference": "Psalm 23:1", "text": "The LORD is my shepherd; I shall not want."},
|
||||
{"reference": "Psalm 46:10", "text": "Be still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth."},
|
||||
{"reference": "Psalm 51:10", "text": "Create in me a clean heart, O God; and renew a right spirit within me."},
|
||||
{"reference": "Psalm 119:105", "text": "Thy word is a lamp unto my feet, and a light unto my path."},
|
||||
{"reference": "Psalm 139:14", "text": "I will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Book I", "chapters": "1-41", "description": "Primarily Davidic psalms, personal in nature"},
|
||||
{"section": "Book II", "chapters": "42-72", "description": "Psalms of David and Korah, ending with Solomon"},
|
||||
{"section": "Book III", "chapters": "73-89", "description": "Asaph's psalms and corporate concerns"},
|
||||
{"section": "Book IV", "chapters": "90-106", "description": "Begins with Moses, emphasizes God's kingship"},
|
||||
{"section": "Book V", "chapters": "107-150", "description": "Includes Songs of Ascent, concludes with praise"}
|
||||
],
|
||||
"historical_context": "The Psalms were composed over roughly a millennium, from Moses (Psalm 90) through the post-exilic period. David established temple worship and commissioned Levitical musicians. The five-book division mirrors the Pentateuch. Many psalms include superscriptions indicating authorship, musical instructions, or historical setting. They were used in temple worship, pilgrimage festivals, royal ceremonies, and private devotion.",
|
||||
"literary_style": "Hebrew poetry uses parallelism (synonymous, antithetical, synthetic) rather than rhyme. The Psalms include various genres: hymns of praise, individual and communal laments, thanksgiving psalms, royal psalms, wisdom psalms, and others. Acrostic patterns (like Psalm 119) demonstrate artistic craft. Vivid imagery, emotional intensity, and theological depth characterize the collection.",
|
||||
"christ_in_book": "The New Testament quotes Psalms extensively concerning Christ: His eternal sonship (2:7), betrayal (41:9), crucifixion (22), resurrection (16:10), ascension (68:18), and eternal priesthood (110:4). Jesus quoted Psalm 22:1 from the cross and Psalm 31:5 at His death. The messianic psalms (2, 22, 45, 72, 89, 110, 132) present Christ as David's Lord and Son, the suffering servant, and the eternal King.",
|
||||
"practical_application": "The Psalms give us language for every season of life—words when we don't know how to pray. They model honest expression of emotion to God, including anger, confusion, and fear. They teach us to worship by rehearsing God's attributes and acts. They show that trust grows through lament, not around it. The Psalms shape our interior life and attune our hearts to God's heart. They invite us to join the chorus of all creation praising the LORD."
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "Revelation",
|
||||
"abbreviation": "Rev",
|
||||
"testament": "New Testament",
|
||||
"position": 66,
|
||||
"chapters": 22,
|
||||
"category": "Prophecy/Apocalyptic",
|
||||
"author": "John the Apostle",
|
||||
"date_written": "c. AD 95",
|
||||
"introduction": "Revelation is the Bible's dramatic conclusion—the unveiling of Jesus Christ in glory and the consummation of God's redemptive plan. Written to seven churches in Asia Minor facing persecution, it assures them that Christ reigns, evil will be defeated, and God's people will triumph. Through vivid symbolism, John portrays the conflict between good and evil, culminating in Christ's return, final judgment, and the new heavens and new earth where God dwells with His people forever.",
|
||||
"key_themes": [
|
||||
"The sovereignty and glory of Christ",
|
||||
"The conflict between God's kingdom and evil",
|
||||
"The vindication of suffering saints",
|
||||
"The fall of Babylon and worldly powers",
|
||||
"The final judgment",
|
||||
"The new creation and eternal life"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Revelation 1:7-8", "text": "Behold, he cometh with clouds; and every eye shall see him, and they also which pierced him: and all kindreds of the earth shall wail because of him. Even so, Amen. I am Alpha and Omega, the beginning and the ending, saith the Lord, which is, and which was, and which is to come, the Almighty."},
|
||||
{"reference": "Revelation 5:9-10", "text": "And they sung a new song, saying, Thou art worthy to take the book, and to open the seals thereof: for thou wast slain, and hast redeemed us to God by thy blood out of every kindred, and tongue, and people, and nation; And hast made us unto our God kings and priests: and we shall reign on the earth."},
|
||||
{"reference": "Revelation 19:16", "text": "And he hath on his vesture and on his thigh a name written, KING OF KINGS, AND LORD OF LORDS."},
|
||||
{"reference": "Revelation 21:3-4", "text": "And I heard a great voice out of heaven saying, Behold, the tabernacle of God is with men, and he will dwell with them, and they shall be his people, and God himself shall be with them, and be their God. And God shall wipe away all tears from their eyes; and there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain: for the former things are passed away."},
|
||||
{"reference": "Revelation 22:20", "text": "He which testifieth these things saith, Surely I come quickly. Amen. Even so, come, Lord Jesus."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction and Vision of Christ", "chapters": "1", "description": "Prologue, the Son of Man among the lampstands"},
|
||||
{"section": "Letters to Seven Churches", "chapters": "2-3", "description": "Ephesus, Smyrna, Pergamos, Thyatira, Sardis, Philadelphia, Laodicea"},
|
||||
{"section": "Throne Room and Scroll", "chapters": "4-5", "description": "Worship in heaven, the Lamb worthy to open"},
|
||||
{"section": "Seals, Trumpets, and Bowls", "chapters": "6-16", "description": "Judgments, interludes, conflict with evil"},
|
||||
{"section": "Fall of Babylon", "chapters": "17-18", "description": "The harlot and the beast destroyed"},
|
||||
{"section": "Christ's Return and Final Judgment", "chapters": "19-20", "description": "Marriage supper, battle, millennium, great white throne"},
|
||||
{"section": "New Creation", "chapters": "21-22", "description": "New heaven and earth, New Jerusalem, epilogue"}
|
||||
],
|
||||
"historical_context": "John received this revelation while exiled on Patmos during Domitian's persecution (around AD 95). The seven churches faced various challenges: false teaching, persecution, complacency. Emperor worship was increasingly demanded. The book encouraged perseverance by showing Christ's ultimate victory and the certainty of God's justice. Its symbols drew from Old Testament imagery (Daniel, Ezekiel, Zechariah) and would be familiar to Jewish Christians.",
|
||||
"literary_style": "Revelation is apocalyptic literature, using symbolic visions, numbers, and dramatic imagery to convey spiritual realities. Numbers are significant (7 = completeness, 12 = God's people, 666 = ultimate imperfection). Colors, creatures, and cosmic events all carry meaning. The structure includes cycles of seven (seals, trumpets, bowls). The book is also a letter (to seven churches) and prophecy. Rich in Old Testament allusions, it draws heavily from Daniel, Isaiah, and Ezekiel.",
|
||||
"christ_in_book": "Revelation is 'the revelation of Jesus Christ.' He is the faithful witness, firstborn from the dead, ruler of kings. He is the First and Last, who died and lives. He is the Lion of Judah and the Lamb who was slain. He is the Alpha and Omega, Beginning and End. He is the Root and Offspring of David, the bright Morning Star. He is King of kings and Lord of lords, coming on a white horse to judge and reign.",
|
||||
"practical_application": "Revelation assures suffering believers that Christ has already won—the outcome is certain even when circumstances seem otherwise. The letters to the seven churches call for self-examination: Do we have first love? Are we faithful unto death? Have we become lukewarm? The book calls for patient endurance and faithful witness. It warns against compromise with the world system (Babylon). Above all, it directs our hope to Christ's return, the new creation, and eternal life in God's presence. 'Even so, come, Lord Jesus.'"
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "Romans",
|
||||
"abbreviation": "Rom",
|
||||
"testament": "New Testament",
|
||||
"position": 45,
|
||||
"chapters": 16,
|
||||
"category": "Pauline Epistles",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 57",
|
||||
"introduction": "Romans is Paul's theological masterpiece, the most systematic presentation of the gospel in Scripture. Written to a church he had not founded, Paul explains how God saves sinners—Jew and Gentile alike—through faith in Christ. From universal condemnation to justification, sanctification, and glorification, Romans unfolds the righteousness of God revealed in the gospel. It has sparked revivals and transformed individuals throughout church history.",
|
||||
"key_themes": [
|
||||
"The righteousness of God revealed in the gospel",
|
||||
"Justification by faith alone",
|
||||
"Universal human sinfulness",
|
||||
"Union with Christ and new life",
|
||||
"God's sovereign purpose in salvation",
|
||||
"Living sacrifice and love in community"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Romans 1:16-17", "text": "For I am not ashamed of the gospel of Christ: for it is the power of God unto salvation to every one that believeth; to the Jew first, and also to the Greek. For therein is the righteousness of God revealed from faith to faith: as it is written, The just shall live by faith."},
|
||||
{"reference": "Romans 3:23-24", "text": "For all have sinned, and come short of the glory of God; Being justified freely by his grace through the redemption that is in Christ Jesus."},
|
||||
{"reference": "Romans 8:28", "text": "And we know that all things work together for good to them that love God, to them who are the called according to his purpose."},
|
||||
{"reference": "Romans 8:38-39", "text": "For I am persuaded, that neither death, nor life, nor angels, nor principalities, nor powers, nor things present, nor things to come, Nor height, nor depth, nor any other creature, shall be able to separate us from the love of God, which is in Christ Jesus our Lord."},
|
||||
{"reference": "Romans 12:1-2", "text": "I beseech you therefore, brethren, by the mercies of God, that ye present your bodies a living sacrifice, holy, acceptable unto God, which is your reasonable service. And be not conformed to this world: but be ye transformed by the renewing of your mind."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction", "chapters": "1:1-17", "description": "Greetings, thanksgiving, theme statement"},
|
||||
{"section": "Condemnation: The Need", "chapters": "1:18-3:20", "description": "Gentile guilt, Jewish guilt, all under sin"},
|
||||
{"section": "Justification: The Provision", "chapters": "3:21-5:21", "description": "Righteousness through faith, Abraham's example, peace with God"},
|
||||
{"section": "Sanctification: The Process", "chapters": "6-8", "description": "Dead to sin, struggle with flesh, life in the Spirit"},
|
||||
{"section": "Israel: The Problem", "chapters": "9-11", "description": "God's sovereignty, Israel's failure, future restoration"},
|
||||
{"section": "Application: The Practice", "chapters": "12-15", "description": "Living sacrifices, love, government, weak and strong"},
|
||||
{"section": "Conclusion", "chapters": "16", "description": "Greetings, warnings, doxology"}
|
||||
],
|
||||
"historical_context": "Paul wrote Romans from Corinth around AD 57, near the end of his third missionary journey. He planned to visit Rome en route to Spain and wrote to introduce himself and his gospel to a church with both Jewish and Gentile members. The letter addresses tensions between these groups and establishes common ground in the gospel that saves all who believe.",
|
||||
"literary_style": "Romans is carefully argued theological discourse, building logically from premise to conclusion. Paul uses diatribe style (anticipating and answering objections), Old Testament quotations, rhetorical questions, and vivid imagery. The letter moves from indicative (what God has done) to imperative (how we should live). Chapter 8's conclusion and 11's doxology are rhetorical and emotional high points.",
|
||||
"christ_in_book": "Christ is central throughout Romans. He is descended from David, declared Son of God by resurrection, the means of justification, the one to whom we are united in death and life, the end of the law for righteousness, the Lord over all who saves all who call upon Him, and the servant example we follow. God's righteousness is revealed through faith in Christ. Nothing can separate us from His love.",
|
||||
"practical_application": "Romans grounds Christian ethics in gospel indicatives—we live transformed lives because God has transformed us. It calls for presenting our bodies as living sacrifices, being renewed in mind rather than conformed to the world. The letter teaches love in community, submission to authorities, and bearing with weaker believers. It humbles us with our total need and lifts us with God's complete provision. Understanding Romans means understanding the gospel."
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "Ruth",
|
||||
"abbreviation": "Ruth",
|
||||
"testament": "Old Testament",
|
||||
"position": 8,
|
||||
"chapters": 4,
|
||||
"category": "History",
|
||||
"author": "Unknown (possibly Samuel)",
|
||||
"date_written": "c. 1050-1000 BC",
|
||||
"introduction": "Ruth is a beautiful love story set against the dark backdrop of the Judges period. This short book follows a Moabite widow who chooses to embrace Israel's God and finds redemption through a kinsman-redeemer named Boaz. Ruth's inclusion in the lineage of David and ultimately Jesus demonstrates God's grace extending to all peoples and His sovereignty in weaving ordinary faithfulness into extraordinary purposes.",
|
||||
"key_themes": [
|
||||
"Loyal love (hesed) in human relationships",
|
||||
"God's providence in ordinary events",
|
||||
"The kinsman-redeemer concept",
|
||||
"Inclusion of Gentiles in God's plan",
|
||||
"Redemption and restoration",
|
||||
"Faithfulness in difficult circumstances"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Ruth 1:16-17", "text": "And Ruth said, Intreat me not to leave thee, or to return from following after thee: for whither thou goest, I will go; and where thou lodgest, I will lodge: thy people shall be my people, and thy God my God: Where thou diest, will I die, and there will I be buried: the LORD do so to me, and more also, if ought but death part thee and me."},
|
||||
{"reference": "Ruth 2:12", "text": "The LORD recompense thy work, and a full reward be given thee of the LORD God of Israel, under whose wings thou art come to trust."},
|
||||
{"reference": "Ruth 4:14", "text": "And the women said unto Naomi, Blessed be the LORD, which hath not left thee this day without a kinsman, that his name may be famous in Israel."},
|
||||
{"reference": "Ruth 3:9", "text": "And he said, Who art thou? And she answered, I am Ruth thine handmaid: spread therefore thy skirt over thine handmaid; for thou art a near kinsman."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Tragedy in Moab", "chapters": "1", "description": "Naomi's losses and Ruth's commitment"},
|
||||
{"section": "Providence in the Field", "chapters": "2", "description": "Ruth gleans in Boaz's field"},
|
||||
{"section": "Proposal at the Threshing Floor", "chapters": "3", "description": "Ruth appeals to Boaz as kinsman-redeemer"},
|
||||
{"section": "Redemption at the Gate", "chapters": "4", "description": "Boaz redeems Ruth, their marriage, and Obed's birth"}
|
||||
],
|
||||
"historical_context": "The events occurred 'in the days when the judges ruled,' likely during a period of relative peace. Bethlehem faced famine, causing Elimelech's family to sojourn in Moab—Israel's traditional enemy. The story illustrates the levirate marriage custom and the role of the kinsman-redeemer (goel), who had the right and responsibility to redeem property and protect family members. Ruth became the great-grandmother of King David.",
|
||||
"literary_style": "Ruth is a masterpiece of Hebrew narrative art—compact, symmetrical, and perfectly crafted. It moves from emptiness to fullness, from death to life, from despair to hope. Key words (return, rest, wings, redeem) weave through the text. Dialogue dominates, revealing character with economy. The story's placement in the Hebrew Bible varies—either with the historical books or among the Writings (Megilloth), read at the Feast of Weeks.",
|
||||
"christ_in_book": "Boaz is one of Scripture's clearest types of Christ as the kinsman-redeemer. He had the right to redeem (he was a relative), the resources to redeem (he was wealthy), and the resolve to redeem (he chose to marry Ruth). Christ likewise became our kinsman through incarnation, paid our redemption price with His blood, and claims His bride the Church. Ruth the Gentile finding grace foreshadows Gentile inclusion in salvation.",
|
||||
"practical_application": "Ruth teaches that faithfulness in small, ordinary duties can have extraordinary consequences. It shows that God includes outsiders in His family through faith. The book demonstrates how godly character (Ruth's loyalty, Boaz's integrity) attracts blessing. It encourages trust in God's providence during bitter times—what begins with 'don't call me Naomi' (pleasant) ends with a grandmother's joy. Ruth's choice to abandon her old gods and embrace the LORD models true conversion."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Song of Solomon",
|
||||
"abbreviation": "Song",
|
||||
"testament": "Old Testament",
|
||||
"position": 22,
|
||||
"chapters": 8,
|
||||
"category": "Wisdom/Poetry",
|
||||
"author": "Solomon",
|
||||
"date_written": "c. 965 BC",
|
||||
"introduction": "The Song of Solomon is an exquisite love poem celebrating the beauty of marital love. Its frank celebration of romantic and physical love affirms God's design for marriage as expressed in Genesis. The book has also been read allegorically throughout Jewish and Christian history as depicting the love between God and His people, or Christ and the church. Both readings have value—earthly love at its best reflects divine love.",
|
||||
"key_themes": [
|
||||
"The beauty and dignity of romantic love",
|
||||
"The exclusivity and commitment of marriage",
|
||||
"Desire, longing, and union",
|
||||
"The beloved's beauty celebrated",
|
||||
"The power and permanence of love",
|
||||
"Love as God's gift"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Song of Solomon 2:16", "text": "My beloved is mine, and I am his: he feedeth among the lilies."},
|
||||
{"reference": "Song of Solomon 8:6-7", "text": "Set me as a seal upon thine heart, as a seal upon thine arm: for love is strong as death; jealousy is cruel as the grave: the coals thereof are coals of fire, which hath a most vehement flame. Many waters cannot quench love, neither can the floods drown it: if a man would give all the substance of his house for love, it would utterly be contemned."},
|
||||
{"reference": "Song of Solomon 2:4", "text": "He brought me to the banqueting house, and his banner over me was love."},
|
||||
{"reference": "Song of Solomon 4:7", "text": "Thou art all fair, my love; there is no spot in thee."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "The Beginning of Love", "chapters": "1:1-2:7", "description": "Mutual admiration and longing"},
|
||||
{"section": "Love's Development", "chapters": "2:8-3:5", "description": "Visits, dreams, and anticipation"},
|
||||
{"section": "The Wedding", "chapters": "3:6-5:1", "description": "Solomon's procession, the wedding night"},
|
||||
{"section": "Love Tested", "chapters": "5:2-6:3", "description": "A conflict and reconciliation"},
|
||||
{"section": "Love Deepened", "chapters": "6:4-8:4", "description": "Renewed praise and desire"},
|
||||
{"section": "Love Affirmed", "chapters": "8:5-14", "description": "Love's permanence and final longing"}
|
||||
],
|
||||
"historical_context": "Solomon wrote 1,005 songs (1 Kings 4:32), and this is the 'Song of Songs'—the greatest of them. Written likely early in Solomon's reign, before his many marriages corrupted his understanding of love, it presents the ideal of exclusive, committed love. The agricultural and pastoral imagery suggests a rural setting. The book was read at Passover, connecting covenant redemption with covenant love.",
|
||||
"literary_style": "The Song is lyric poetry of the highest order, using rich imagery drawn from nature—gardens, vineyards, orchards, animals, spices. It employs the wasf genre (elaborate praise of the beloved's physical beauty). The dialogue shifts between the man, the woman, and the 'daughters of Jerusalem.' Dream sequences, refrains, and parallel structures create unity. The language is sensuous but never crude.",
|
||||
"christ_in_book": "Jewish tradition read the Song as depicting God's love for Israel; Christians have seen Christ and the church. Paul uses marriage as a metaphor for Christ and the church (Ephesians 5:25-32). The bridegroom's passionate pursuit mirrors Christ's love. The refrain 'My beloved is mine, and I am his' expresses covenant relationship. The book celebrates the ultimate marriage feast anticipated in Revelation 19.",
|
||||
"practical_application": "The Song affirms that physical love within marriage is God's good gift, not something shameful. It encourages couples to cultivate romance, to express admiration verbally, and to delight in one another. The exclusive language ('my beloved is mine') guards against the promiscuity that plagued Solomon's later life. The book warns against awakening love prematurely (2:7, 3:5, 8:4). For all readers, it pictures the passionate, pursuing love God has for His people."
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Titus",
|
||||
"abbreviation": "Titus",
|
||||
"testament": "New Testament",
|
||||
"position": 56,
|
||||
"chapters": 3,
|
||||
"category": "Pauline Epistles (Pastoral)",
|
||||
"author": "Paul the Apostle",
|
||||
"date_written": "c. AD 63-65",
|
||||
"introduction": "Titus parallels First Timothy—both instruct Paul's co-workers about establishing church order. Paul left Titus on Crete to appoint elders and address false teaching. The letter emphasizes how sound doctrine produces godly living. The gospel is not just truth to believe but grace that trains us for righteous living. Titus contains beautiful summaries of Christ's redemptive work and calls for good works as faith's proper fruit.",
|
||||
"key_themes": [
|
||||
"Appointing qualified elders",
|
||||
"Sound doctrine producing godly living",
|
||||
"The grace of God that transforms",
|
||||
"Good works as faith's evidence",
|
||||
"Silencing false teachers",
|
||||
"Living godly in this present age"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Titus 1:5", "text": "For this cause left I thee in Crete, that thou shouldest set in order the things that are wanting, and ordain elders in every city, as I had appointed thee."},
|
||||
{"reference": "Titus 2:11-14", "text": "For the grace of God that bringeth salvation hath appeared to all men, Teaching us that, denying ungodliness and worldly lusts, we should live soberly, righteously, and godly, in this present world; Looking for that blessed hope, and the glorious appearing of the great God and our Saviour Jesus Christ; Who gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works."},
|
||||
{"reference": "Titus 3:4-7", "text": "But after that the kindness and love of God our Saviour toward man appeared, Not by works of righteousness which we have done, but according to his mercy he saved us, by the washing of regeneration, and renewing of the Holy Ghost; Which he shed on us abundantly through Jesus Christ our Saviour; That being justified by his grace, we should be made heirs according to the hope of eternal life."},
|
||||
{"reference": "Titus 3:8", "text": "This is a faithful saying, and these things I will that thou affirm constantly, that they which have believed in God might be careful to maintain good works."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Introduction", "chapters": "1:1-4", "description": "Greeting and purpose"},
|
||||
{"section": "Elders and False Teachers", "chapters": "1:5-16", "description": "Qualifications for elders, rebuke of deceivers"},
|
||||
{"section": "Instructions for Groups", "chapters": "2:1-10", "description": "Older men and women, younger, servants"},
|
||||
{"section": "The Grace of God", "chapters": "2:11-15", "description": "Grace appearing and training us"},
|
||||
{"section": "Christian Conduct", "chapters": "3:1-11", "description": "Submission, kindness, avoiding divisions"},
|
||||
{"section": "Conclusion", "chapters": "3:12-15", "description": "Personal instructions and farewell"}
|
||||
],
|
||||
"historical_context": "Crete was a large Mediterranean island with a reputation for dishonesty and immorality (hence Paul's quotation of the Cretan prophet in 1:12). Paul had apparently evangelized there with Titus after his first Roman imprisonment. The churches needed organization and protection from false teachers promoting Jewish myths and legalism. Titus was to appoint elders and establish healthy church life.",
|
||||
"literary_style": "Titus is compact and practical. Two profound theological passages (2:11-14; 3:4-7) summarize the gospel with unusual beauty—often called 'faithful sayings.' The letter ties doctrine tightly to practice: sound teaching produces sound living. Paul's instructions are organized by social groups and situations. The emphasis on good works is striking (mentioned six times in three chapters) as evidence of genuine faith.",
|
||||
"christ_in_book": "The two gospel summaries present Christ magnificently. He is our great God and Savior whose glorious appearing we await. He gave Himself for us to redeem us from all iniquity and purify a people for His own possession. God our Savior saved us through the washing of regeneration, pouring out the Holy Spirit abundantly through Jesus Christ. We are justified by His grace and made heirs of eternal life.",
|
||||
"practical_application": "Titus shows that grace does not lead to carelessness but trains us for godly living. Sound doctrine and good works are inseparable—faith that does not transform conduct is not genuine faith. The letter provides qualifications for church leaders that remain applicable. Various groups—old, young, employees—have specific callings. Christians should be subject to authorities, avoid quarrels, and be gentle. The gospel makes us 'zealous for good works.'"
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "Zechariah",
|
||||
"abbreviation": "Zech",
|
||||
"testament": "Old Testament",
|
||||
"position": 38,
|
||||
"chapters": 14,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Zechariah son of Berechiah",
|
||||
"date_written": "c. 520-480 BC",
|
||||
"introduction": "Zechariah is the most messianic of the Minor Prophets and the most quoted in the Gospel passion narratives. Like Haggai, he encouraged temple rebuilding, but his message extends far beyond—through symbolic visions and oracles, he reveals God's ultimate purposes: the cleansing of His people, the coming of the King-Priest, and the establishment of God's kingdom over all the earth. Zechariah's visions bridge present discouragement and future glory.",
|
||||
"key_themes": [
|
||||
"Encouragement for rebuilding",
|
||||
"Visions of God's protection and purposes",
|
||||
"The coming Branch (Messiah)",
|
||||
"The union of king and priest",
|
||||
"The outpouring of the Spirit",
|
||||
"The Lord's return and reign"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Zechariah 4:6", "text": "Then he answered and spake unto me, saying, This is the word of the LORD unto Zerubbabel, saying, Not by might, nor by power, but by my spirit, saith the LORD of hosts."},
|
||||
{"reference": "Zechariah 9:9", "text": "Rejoice greatly, O daughter of Zion; shout, O daughter of Jerusalem: behold, thy King cometh unto thee: he is just, and having salvation; lowly, and riding upon an ass, and upon a colt the foal of an ass."},
|
||||
{"reference": "Zechariah 12:10", "text": "And I will pour upon the house of David, and upon the inhabitants of Jerusalem, the spirit of grace and of supplications: and they shall look upon me whom they have pierced, and they shall mourn for him."},
|
||||
{"reference": "Zechariah 13:1", "text": "In that day there shall be a fountain opened to the house of David and to the inhabitants of Jerusalem for sin and for uncleanness."},
|
||||
{"reference": "Zechariah 14:9", "text": "And the LORD shall be king over all the earth: in that day shall there be one LORD, and his name one."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Call to Repentance", "chapters": "1:1-6", "description": "Return to the LORD"},
|
||||
{"section": "Eight Night Visions", "chapters": "1:7-6:15", "description": "Horses, horns, measuring line, Joshua, lampstand, scroll, woman, chariots"},
|
||||
{"section": "Fasting Question", "chapters": "7-8", "description": "Justice over fasting, future blessings"},
|
||||
{"section": "First Oracle: King Coming", "chapters": "9-11", "description": "Victories, shepherds, rejection of the Shepherd"},
|
||||
{"section": "Second Oracle: Final Triumph", "chapters": "12-14", "description": "Jerusalem's deliverance, mourning, fountain, the LORD's reign"}
|
||||
],
|
||||
"historical_context": "Zechariah was a contemporary of Haggai, prophesying from 520 BC onwards. The returned exiles were a small, vulnerable community in a corner of the Persian Empire. The temple was being rebuilt but would be modest compared to Solomon's. Zechariah's visions assured them that present smallness did not limit God's grand purposes. The book's later oracles may extend into the following decades.",
|
||||
"literary_style": "Zechariah divides into two sections: the night visions with their angelic interpreter (1-8) and the oracles or 'burdens' (9-14). The visions are symbolic and sometimes bizarre (flying scrolls, women in baskets). The later chapters move toward apocalyptic imagery. The book is rich in dialogue and explanation. Messianic prophecy reaches unusual specificity—the king on a donkey, thirty pieces of silver, the pierced one.",
|
||||
"christ_in_book": "Zechariah provides a detailed portrait of Christ: the Branch, both king and priest (6:12-13); the humble king entering Jerusalem on a donkey (9:9, fulfilled in Matthew 21:5); the shepherd valued at thirty pieces of silver (11:12-13, fulfilled in Matthew 27:9-10); the one whom they pierced (12:10, fulfilled at the cross and referenced in John 19:37); the smitten shepherd (13:7, quoted by Jesus in Matthew 26:31). The fountain for sin (13:1) pictures Christ's cleansing blood.",
|
||||
"practical_application": "Zechariah encourages believers that God accomplishes His purposes 'not by might, nor by power, but by my Spirit.' Small beginnings don't prevent great endings. The book calls for genuine religion—justice and compassion, not empty ritual. It assures us that God has not forgotten His purposes and that present difficulties are part of a larger story ending in universal worship of the LORD. The vision of the pierced one mourned over models repentant faith."
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"name": "Zephaniah",
|
||||
"abbreviation": "Zeph",
|
||||
"testament": "Old Testament",
|
||||
"position": 36,
|
||||
"chapters": 3,
|
||||
"category": "Minor Prophets",
|
||||
"author": "Zephaniah",
|
||||
"date_written": "c. 640-609 BC",
|
||||
"introduction": "Zephaniah announces the Day of the LORD with terrifying intensity—a day of wrath, darkness, and universal judgment. Writing during the moral darkness before Josiah's reforms, he exposes Judah's syncretism, violence, and complacency. Yet the book ends with one of Scripture's most beautiful pictures of God rejoicing over His redeemed people with singing. Judgment and salvation, wrath and love—both belong to the Day of the LORD.",
|
||||
"key_themes": [
|
||||
"The Day of the LORD as universal judgment",
|
||||
"Syncretism and religious corruption",
|
||||
"The humble remnant who seek the LORD",
|
||||
"Judgment on the nations",
|
||||
"Restoration and joy",
|
||||
"God rejoicing over His people"
|
||||
],
|
||||
"key_verses": [
|
||||
{"reference": "Zephaniah 1:14-15", "text": "The great day of the LORD is near, it is near, and hasteth greatly, even the voice of the day of the LORD: the mighty man shall cry there bitterly. That day is a day of wrath, a day of trouble and distress, a day of wasteness and desolation, a day of darkness and gloominess."},
|
||||
{"reference": "Zephaniah 2:3", "text": "Seek ye the LORD, all ye meek of the earth, which have wrought his judgment; seek righteousness, seek meekness: it may be ye shall be hid in the day of the LORD's anger."},
|
||||
{"reference": "Zephaniah 3:9", "text": "For then will I turn to the people a pure language, that they may all call upon the name of the LORD, to serve him with one consent."},
|
||||
{"reference": "Zephaniah 3:17", "text": "The LORD thy God in the midst of thee is mighty; he will save, he will rejoice over thee with joy; he will rest in his love, he will joy over thee with singing."}
|
||||
],
|
||||
"outline": [
|
||||
{"section": "Judgment on Judah", "chapters": "1:1-2:3", "description": "Day of wrath described, call to seek the LORD"},
|
||||
{"section": "Judgment on Nations", "chapters": "2:4-15", "description": "Philistia, Moab, Ammon, Cush, Assyria"},
|
||||
{"section": "Jerusalem's Sin and Restoration", "chapters": "3", "description": "Woe to the city, promise of purified remnant, rejoicing"}
|
||||
],
|
||||
"historical_context": "Zephaniah was of royal descent (great-great-grandson of Hezekiah) and prophesied during Josiah's reign (640-609 BC), likely before the reforms of 621 BC. Manasseh's 55-year reign had institutionalized idolatry. Pagan worship flourished alongside worship of the LORD—Baal, host of heaven, and Molech were served. The international scene was also unstable as Assyria weakened and new powers emerged.",
|
||||
"literary_style": "Zephaniah is characterized by urgency and intensity. The Day of the LORD terminology dominates, painted in darkest colors. The universal scope of judgment is striking—from Judah outward to all nations and back to Jerusalem. The book's structure moves from judgment to hope, from wrath to singing. The dramatic contrast between 1:15's 'day of darkness' and 3:17's 'God rejoicing' is theologically profound.",
|
||||
"christ_in_book": "The Day of the LORD encompasses both Christ's first and second comings. The humble remnant who seek righteousness anticipates those who receive Christ. The promise of 'pure speech' (3:9) suggests Pentecost's reversal of Babel. God 'in the midst' of His people, mighty to save and rejoicing over them, finds fulfillment in Immanuel—God with us. The King of Israel in their midst (3:15) is Christ.",
|
||||
"practical_application": "Zephaniah warns against religious complacency and syncretism—mixing faith with worldly values. The call to seek the LORD in humility before judgment comes remains urgent. The book exposes the folly of thinking 'The LORD will do nothing, either good or bad' (1:12). Yet its final vision of God singing over His people with joy assures believers of His deep delight in them. We are not merely tolerated but celebrated by our Redeemer."
|
||||
}
|
||||
@@ -784,5 +784,902 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Grace": {
|
||||
"description": "God's unmerited favor toward sinners through Jesus Christ",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Grace stands</span> as one of the most glorious words in Scripture, capturing the essence of God's character and the foundation of salvation. Unlike mercy, which withholds deserved punishment, grace bestows undeserved blessing. It represents God's free and sovereign favor toward those who merit only condemnation—the divine disposition to give what cannot be earned, purchased, or repaid.</p>\n\n<p class=\"intro-text\">The biblical concept of grace encompasses multiple dimensions. <strong>Saving grace</strong> brings sinners from death to life, from condemnation to justification, from alienation to adoption. \"By grace are ye saved through faith; and that not of yourselves: it is the gift of God\" (Ephesians 2:8). This saving grace excludes human contribution and silences all boasting. <strong>Sustaining grace</strong> empowers believers for daily living, providing strength sufficient for every trial. \"My grace is sufficient for thee: for my strength is made perfect in weakness\" (2 Corinthians 12:9). <strong>Sanctifying grace</strong> progressively transforms believers into Christ's likeness, producing holiness that human effort cannot achieve.</p>\n\n<p class=\"intro-text\">Grace does not compromise God's justice but satisfies it through Christ's substitutionary death. At the cross, grace and righteousness kiss—God demonstrates both His hatred of sin and His love for sinners. Grace is not cheap sentimentalism that ignores transgression but costly redemption that paid sin's full penalty. \"Being justified freely by his grace through the redemption that is in Christ Jesus\" (Romans 3:24). The grace that saves also sanctifies, for it \"teacheth us that, denying ungodliness and worldly lusts, we should live soberly, righteously, and godly, in this present world\" (Titus 2:12).</p>\n\n<p class=\"intro-text\">Understanding grace transforms Christian living. It produces humility (recognizing we deserve nothing), gratitude (appreciating what we've received), generosity (extending to others what God extended to us), and confidence (trusting God's ongoing provision). Grace motivates obedience more powerfully than law ever could, for love compels what duty cannot force. Those who truly grasp grace cannot remain unchanged—they become channels of grace to others.</p>",
|
||||
"subtopics": {
|
||||
"Saving Grace": {
|
||||
"description": "Grace that brings salvation",
|
||||
"verses": [
|
||||
{"ref": "Ephesians 2:8-9", "note": "Saved by grace through faith"},
|
||||
{"ref": "Romans 3:24", "note": "Justified freely by His grace"},
|
||||
{"ref": "Titus 2:11", "note": "Grace that bringeth salvation"},
|
||||
{"ref": "Romans 5:15", "note": "The gift by grace"}
|
||||
]
|
||||
},
|
||||
"Sustaining Grace": {
|
||||
"description": "Grace for daily strength",
|
||||
"verses": [
|
||||
{"ref": "2 Corinthians 12:9", "note": "My grace is sufficient"},
|
||||
{"ref": "Hebrews 4:16", "note": "Find grace to help in time of need"},
|
||||
{"ref": "James 4:6", "note": "He giveth more grace"},
|
||||
{"ref": "1 Peter 5:10", "note": "The God of all grace"}
|
||||
]
|
||||
},
|
||||
"Growing in Grace": {
|
||||
"description": "Maturing through grace",
|
||||
"verses": [
|
||||
{"ref": "2 Peter 3:18", "note": "Grow in grace and knowledge"},
|
||||
{"ref": "John 1:16", "note": "Grace for grace"},
|
||||
{"ref": "Colossians 4:6", "note": "Speech with grace"},
|
||||
{"ref": "2 Corinthians 8:7", "note": "Abound in this grace also"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Joy": {
|
||||
"description": "Deep gladness rooted in God's character and promises",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Joy in Scripture</span> differs fundamentally from worldly happiness. While happiness depends on favorable circumstances, biblical joy remains steadfast regardless of external conditions. This supernatural gladness flows from relationship with God, confidence in His sovereignty, and hope in eternal promises. Joy is simultaneously a gift of the Spirit and a discipline of faith—something received and something cultivated.</p>\n\n<p class=\"intro-text\">The sources of Christian joy are manifold. <strong>Joy in salvation</strong> celebrates the greatest reality: reconciliation with God and deliverance from condemnation. \"We also joy in God through our Lord Jesus Christ, by whom we have now received the atonement\" (Romans 5:11). <strong>Joy in God Himself</strong> delights in His character, finding satisfaction in who He is rather than merely what He gives. \"Whom having not seen, ye love; in whom, though now ye see him not, yet believing, ye rejoice with joy unspeakable\" (1 Peter 1:8). <strong>Joy in hope</strong> anticipates future glory, transforming present suffering into light affliction. \"Rejoicing in hope; patient in tribulation\" (Romans 12:12).</p>\n\n<p class=\"intro-text\">Remarkably, Scripture commands joy even amid trials. \"Count it all joy when ye fall into divers temptations\" (James 1:2). This is possible because joy depends not on circumstances but on unchanging realities: God's love, Christ's victory, the Spirit's presence, and heaven's certainty. Paul wrote his epistle of joy from prison, demonstrating that external chains cannot bind internal gladness. The joy of the Lord becomes the believer's strength (Nehemiah 8:10), enabling endurance when human resources fail.</p>\n\n<p class=\"intro-text\">Joy manifests in worship, gratitude, generosity, and witness. Joyful believers attract others to Christ more effectively than dutiful ones. Joy is contagious—it overflows to bless others and glorify God. \"These things have I spoken unto you, that my joy might remain in you, and that your joy might be full\" (John 15:11).</p>",
|
||||
"subtopics": {
|
||||
"Joy in Salvation": {
|
||||
"description": "Rejoicing in redemption",
|
||||
"verses": [
|
||||
{"ref": "Luke 10:20", "note": "Rejoice that your names are written in heaven"},
|
||||
{"ref": "Romans 5:11", "note": "Joy in God through Christ"},
|
||||
{"ref": "Psalms 51:12", "note": "Restore unto me the joy of thy salvation"},
|
||||
{"ref": "Isaiah 61:10", "note": "My soul shall be joyful in my God"}
|
||||
]
|
||||
},
|
||||
"Joy in Trials": {
|
||||
"description": "Finding joy amid suffering",
|
||||
"verses": [
|
||||
{"ref": "James 1:2", "note": "Count it all joy"},
|
||||
{"ref": "Romans 5:3", "note": "Glory in tribulations"},
|
||||
{"ref": "1 Peter 4:13", "note": "Rejoice in Christ's sufferings"},
|
||||
{"ref": "Acts 5:41", "note": "Rejoicing to suffer for His name"}
|
||||
]
|
||||
},
|
||||
"Fullness of Joy": {
|
||||
"description": "Complete joy in God",
|
||||
"verses": [
|
||||
{"ref": "John 15:11", "note": "That your joy might be full"},
|
||||
{"ref": "Psalms 16:11", "note": "Fullness of joy in thy presence"},
|
||||
{"ref": "John 16:24", "note": "Ask, that your joy may be full"},
|
||||
{"ref": "1 John 1:4", "note": "That your joy may be full"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Obedience": {
|
||||
"description": "Submitting to God's commands out of love and reverence",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Obedience represents</span> the practical demonstration of faith, the visible evidence of invisible grace. Biblical obedience is not mere external compliance but wholehearted submission flowing from love. \"If ye love me, keep my commandments\" (John 14:15). This obedience does not earn salvation but expresses it—the grateful response of those who have received immeasurable grace.</p>\n\n<p class=\"intro-text\">Scripture presents obedience as <strong>better than sacrifice</strong> (1 Samuel 15:22), revealing that God desires hearts, not merely rituals. True obedience involves both attitude and action, inner motivation and outward conformity. It extends to all areas of life—thought, word, and deed—and grows from recognition of God's wisdom, goodness, and authority. \"Trust in the LORD with all thine heart; and lean not unto thine own understanding. In all thy ways acknowledge him, and he shall direct thy paths\" (Proverbs 3:5-6).</p>\n\n<p class=\"intro-text\">Christ provides the perfect model of obedience. He \"became obedient unto death, even the death of the cross\" (Philippians 2:8), demonstrating absolute submission to the Father's will. His obedience secured our justification—\"by the obedience of one shall many be made righteous\" (Romans 5:19). Now believers are called to follow His example, walking in obedience not to earn His favor but because they already possess it.</p>\n\n<p class=\"intro-text\">The blessings of obedience are numerous: peace, protection, provision, and intimacy with God. \"If ye be willing and obedient, ye shall eat the good of the land\" (Isaiah 1:19). Yet even apart from blessings, obedience remains right because God is worthy of our submission. His commands are not burdensome but beneficial, expressions of love from One who knows what is best for His creatures.</p>",
|
||||
"subtopics": {
|
||||
"Called to Obey": {
|
||||
"description": "The command to obedience",
|
||||
"verses": [
|
||||
{"ref": "John 14:15", "note": "If ye love me, keep my commandments"},
|
||||
{"ref": "Deuteronomy 11:13", "note": "Diligently hearken to my commandments"},
|
||||
{"ref": "1 Samuel 15:22", "note": "To obey is better than sacrifice"},
|
||||
{"ref": "Acts 5:29", "note": "We ought to obey God rather than men"}
|
||||
]
|
||||
},
|
||||
"Christ's Obedience": {
|
||||
"description": "Jesus as our example",
|
||||
"verses": [
|
||||
{"ref": "Philippians 2:8", "note": "Obedient unto death"},
|
||||
{"ref": "Romans 5:19", "note": "By the obedience of one"},
|
||||
{"ref": "Hebrews 5:8", "note": "Learned obedience by suffering"},
|
||||
{"ref": "John 6:38", "note": "Not my will, but thy will"}
|
||||
]
|
||||
},
|
||||
"Blessings of Obedience": {
|
||||
"description": "The rewards of following God",
|
||||
"verses": [
|
||||
{"ref": "Deuteronomy 28:1-2", "note": "Blessings shall come upon thee"},
|
||||
{"ref": "Isaiah 1:19", "note": "If willing and obedient"},
|
||||
{"ref": "John 14:23", "note": "Father will love him"},
|
||||
{"ref": "James 1:25", "note": "Blessed in his deed"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Humility": {
|
||||
"description": "Lowliness of mind that exalts God and serves others",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Humility occupies</span> a unique place among virtues—it is both the foundation of all other graces and the most elusive to attain. The moment one considers oneself humble, pride has already crept in. Biblical humility involves accurate self-assessment in light of God's greatness and grace: recognizing our dependence, limitations, and unworthiness while trusting completely in God's sufficiency.</p>\n\n<p class=\"intro-text\">Scripture consistently <strong>exalts the humble and resists the proud</strong>. \"God resisteth the proud, but giveth grace unto the humble\" (James 4:6). This pattern pervades both testaments: Pharaoh is humbled while Moses, the meekest man on earth (Numbers 12:3), leads Israel. Nebuchadnezzar loses his throne until humbled. The proud Pharisee goes home unjustified while the humble tax collector receives mercy (Luke 18:9-14). God's kingdom operates on inverted values—the last shall be first, the servant shall be greatest.</p>\n\n<p class=\"intro-text\">Christ Jesus embodies perfect humility. \"Being in the form of God, thought it not robbery to be equal with God: But made himself of no reputation, and took upon him the form of a servant\" (Philippians 2:6-7). The infinite became finite, the Creator served creatures, the King washed feet. His humility was not weakness but strength—the voluntary condescension of absolute power for love's sake.</p>\n\n<p class=\"intro-text\">Practical humility manifests in multiple ways: esteeming others better than ourselves (Philippians 2:3), serving without seeking recognition, receiving correction graciously, acknowledging wrongs readily, and giving God glory for all accomplishments. Humility opens us to learn, frees us from defensiveness, and positions us for God's exaltation. \"Humble yourselves in the sight of the Lord, and he shall lift you up\" (James 4:10).</p>",
|
||||
"subtopics": {
|
||||
"God Exalts the Humble": {
|
||||
"description": "Divine blessing on humility",
|
||||
"verses": [
|
||||
{"ref": "James 4:6", "note": "Giveth grace unto the humble"},
|
||||
{"ref": "1 Peter 5:5-6", "note": "Humble yourselves under God's hand"},
|
||||
{"ref": "Matthew 23:12", "note": "Whosoever shall humble himself"},
|
||||
{"ref": "Luke 14:11", "note": "He that humbleth himself shall be exalted"}
|
||||
]
|
||||
},
|
||||
"Christ's Humility": {
|
||||
"description": "Jesus as our example",
|
||||
"verses": [
|
||||
{"ref": "Philippians 2:5-8", "note": "Mind of Christ, made himself of no reputation"},
|
||||
{"ref": "Matthew 11:29", "note": "I am meek and lowly in heart"},
|
||||
{"ref": "John 13:14-15", "note": "Washed the disciples' feet"},
|
||||
{"ref": "Zechariah 9:9", "note": "Lowly, and riding upon an ass"}
|
||||
]
|
||||
},
|
||||
"Walking in Humility": {
|
||||
"description": "Practical humility",
|
||||
"verses": [
|
||||
{"ref": "Philippians 2:3", "note": "Esteem other better than themselves"},
|
||||
{"ref": "Romans 12:3", "note": "Not to think more highly"},
|
||||
{"ref": "Micah 6:8", "note": "Walk humbly with thy God"},
|
||||
{"ref": "Colossians 3:12", "note": "Put on humbleness of mind"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Holiness": {
|
||||
"description": "Being set apart for God and conformed to His character",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Holiness defines</span> God's essential character and describes the life He calls His people to live. The Hebrew word <em>qadosh</em> and Greek <em>hagios</em> convey the idea of being set apart, separated from the common for sacred purposes. God is supremely holy—utterly distinct from creation, morally perfect, and worthy of absolute reverence. His holiness is not merely one attribute among many but the atmosphere in which all His attributes exist.</p>\n\n<p class=\"intro-text\">Because God is holy, He commands His people: \"Be ye holy; for I am holy\" (1 Peter 1:16). This call to holiness involves both <strong>positional sanctification</strong> (being set apart as God's possession through Christ) and <strong>progressive sanctification</strong> (growing in actual holiness of life). Believers are simultaneously declared holy in Christ and called to become holy in practice—to increasingly reflect the character of the One who saved them.</p>\n\n<p class=\"intro-text\">Practical holiness requires both separation from sin and consecration to God. \"Come out from among them, and be ye separate, saith the Lord, and touch not the unclean thing\" (2 Corinthians 6:17). Yet holiness is not merely negative—avoiding evil—but positive: pursuing righteousness, love, purity, and Christlikeness. The Holy Spirit empowers this pursuit, producing fruit that mere human effort cannot generate.</p>\n\n<p class=\"intro-text\">Without holiness, no one will see the Lord (Hebrews 12:14). This sobering truth underscores holiness as essential, not optional. Yet God graciously provides what He demands, sanctifying believers through His Word, His Spirit, and His providential working. The goal is not self-righteous perfection but Christ-centered transformation—becoming like Jesus for the glory of the Father.</p>",
|
||||
"subtopics": {
|
||||
"God's Holiness": {
|
||||
"description": "The holy character of God",
|
||||
"verses": [
|
||||
{"ref": "Isaiah 6:3", "note": "Holy, holy, holy is the LORD"},
|
||||
{"ref": "Revelation 4:8", "note": "Holy, holy, holy, Lord God Almighty"},
|
||||
{"ref": "1 Samuel 2:2", "note": "None holy as the LORD"},
|
||||
{"ref": "Psalms 99:9", "note": "The LORD our God is holy"}
|
||||
]
|
||||
},
|
||||
"Called to Holiness": {
|
||||
"description": "The command to be holy",
|
||||
"verses": [
|
||||
{"ref": "1 Peter 1:15-16", "note": "Be ye holy; for I am holy"},
|
||||
{"ref": "1 Thessalonians 4:7", "note": "God hath called us unto holiness"},
|
||||
{"ref": "Hebrews 12:14", "note": "Follow peace and holiness"},
|
||||
{"ref": "2 Corinthians 7:1", "note": "Perfecting holiness in the fear of God"}
|
||||
]
|
||||
},
|
||||
"Pursuing Holiness": {
|
||||
"description": "Growing in sanctification",
|
||||
"verses": [
|
||||
{"ref": "Romans 6:22", "note": "Fruit unto holiness"},
|
||||
{"ref": "2 Timothy 2:21", "note": "Sanctified and meet for the master's use"},
|
||||
{"ref": "1 Thessalonians 5:23", "note": "Sanctify you wholly"},
|
||||
{"ref": "Romans 12:1", "note": "Present your bodies a living sacrifice"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Repentance": {
|
||||
"description": "Turning from sin to God with genuine sorrow and changed life",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Repentance marks</span> the beginning of the Christian life and characterizes its continuation. The Greek word <em>metanoia</em> signifies a change of mind that produces a change of direction—not merely feeling sorry for sin but actually turning from it to God. John the Baptist, Jesus, and the apostles all proclaimed repentance as essential to salvation. \"Except ye repent, ye shall all likewise perish\" (Luke 13:3).</p>\n\n<p class=\"intro-text\">True repentance involves several elements. First, <strong>recognition of sin</strong>—seeing transgression as God sees it, as rebellion against His holy law and character. Second, <strong>godly sorrow</strong>—genuine grief over having offended God, not merely regret over consequences. \"Godly sorrow worketh repentance to salvation not to be repented of\" (2 Corinthians 7:10). Third, <strong>confession</strong>—acknowledging sin specifically to God and, where appropriate, to others. Fourth, <strong>turning</strong>—actual change of behavior, forsaking the sin that grieves God.</p>\n\n<p class=\"intro-text\">Repentance is itself a gift from God, not something humans produce by their own will. \"Him hath God exalted with his right hand to be a Prince and a Saviour, for to give repentance to Israel\" (Acts 5:31). This understanding humbles us—even our repentance flows from grace. Yet this does not excuse delay, for God \"now commandeth all men every where to repent\" (Acts 17:30).</p>\n\n<p class=\"intro-text\">Repentance is not a one-time event but an ongoing posture. Believers continually turn from newly discovered sins, deepening in awareness of their need for Christ. The repentant life grows increasingly sensitive to sin while simultaneously more confident in grace. True repentance produces joy, not despair, because it leads to forgiveness and restoration.</p>",
|
||||
"subtopics": {
|
||||
"Call to Repentance": {
|
||||
"description": "God's command to repent",
|
||||
"verses": [
|
||||
{"ref": "Acts 17:30", "note": "Commandeth all men everywhere to repent"},
|
||||
{"ref": "Luke 13:3", "note": "Except ye repent, ye shall perish"},
|
||||
{"ref": "Matthew 4:17", "note": "Repent: for the kingdom is at hand"},
|
||||
{"ref": "Acts 2:38", "note": "Repent, and be baptized"}
|
||||
]
|
||||
},
|
||||
"True Repentance": {
|
||||
"description": "The nature of genuine repentance",
|
||||
"verses": [
|
||||
{"ref": "2 Corinthians 7:10", "note": "Godly sorrow worketh repentance"},
|
||||
{"ref": "Joel 2:13", "note": "Rend your heart, not your garments"},
|
||||
{"ref": "Isaiah 55:7", "note": "Let the wicked forsake his way"},
|
||||
{"ref": "Psalms 51:17", "note": "Broken and contrite heart"}
|
||||
]
|
||||
},
|
||||
"God's Response": {
|
||||
"description": "Divine grace toward the repentant",
|
||||
"verses": [
|
||||
{"ref": "1 John 1:9", "note": "Faithful to forgive"},
|
||||
{"ref": "Isaiah 1:18", "note": "Though your sins be as scarlet"},
|
||||
{"ref": "Luke 15:7", "note": "Joy in heaven over one sinner"},
|
||||
{"ref": "Acts 3:19", "note": "Times of refreshing"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Worship": {
|
||||
"description": "Ascribing worth to God through adoration and service",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Worship constitutes</span> humanity's highest calling and creation's ultimate purpose. The English word derives from \"worth-ship\"—declaring and demonstrating God's supreme value. True worship involves the whole person: mind comprehending God's greatness, heart responding with love and awe, will submitting in obedience, and body expressing reverence through posture and action.</p>\n\n<p class=\"intro-text\">Scripture reveals that God seeks worshippers who worship \"in spirit and in truth\" (John 4:24). Worship \"in spirit\" means genuine, heartfelt engagement—not mere external ritual but internal reality. Worship \"in truth\" means worship informed by Scripture, responding to God as He has revealed Himself rather than as we imagine Him. Both dimensions are essential; one without the other produces either empty formalism or misguided enthusiasm.</p>\n\n<p class=\"intro-text\">While worship includes corporate gatherings, it extends to all of life. \"Whether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God\" (1 Corinthians 10:31). Every activity can become worship when offered to God with gratitude and performed for His glory. Work becomes worship, relationships become worship, even rest becomes worship when consciously rendered to God.</p>\n\n<p class=\"intro-text\">The worshipping life produces profound benefits: intimacy with God, transformation of character, liberation from self-focus, and joy that transcends circumstances. Yet these benefits are not worship's goal—God Himself is. We worship not to get something from God but to give something to God: the honor, praise, and devotion He infinitely deserves.</p>",
|
||||
"subtopics": {
|
||||
"Spirit and Truth": {
|
||||
"description": "How God desires worship",
|
||||
"verses": [
|
||||
{"ref": "John 4:23-24", "note": "In spirit and in truth"},
|
||||
{"ref": "Psalms 95:6", "note": "Come, let us worship and bow down"},
|
||||
{"ref": "Hebrews 12:28", "note": "Serve God acceptably with reverence"},
|
||||
{"ref": "Romans 12:1", "note": "Your reasonable service"}
|
||||
]
|
||||
},
|
||||
"God Alone": {
|
||||
"description": "Exclusive worship of God",
|
||||
"verses": [
|
||||
{"ref": "Matthew 4:10", "note": "Worship the Lord thy God only"},
|
||||
{"ref": "Exodus 20:3-5", "note": "No other gods before me"},
|
||||
{"ref": "Revelation 22:9", "note": "Worship God"},
|
||||
{"ref": "Psalms 29:2", "note": "Worship the LORD in the beauty of holiness"}
|
||||
]
|
||||
},
|
||||
"Expressions of Worship": {
|
||||
"description": "Ways to worship",
|
||||
"verses": [
|
||||
{"ref": "Psalms 150:1-6", "note": "Praise Him with instruments"},
|
||||
{"ref": "Psalms 100:1-2", "note": "Serve the LORD with gladness"},
|
||||
{"ref": "Colossians 3:16", "note": "Psalms, hymns, spiritual songs"},
|
||||
{"ref": "1 Chronicles 16:29", "note": "Worship the LORD in the beauty of holiness"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Heaven": {
|
||||
"description": "The eternal dwelling place of God and His redeemed people",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Heaven represents</span> the Christian's eternal home, the ultimate destination of all who trust in Christ. Scripture presents heaven both as God's present dwelling and as the future inheritance of believers. It is described as a place of unimaginable beauty, perfect fellowship, and complete joy—where sorrow, pain, and death are forever banished.</p>\n\n<p class=\"intro-text\">Central to heaven's glory is the <strong>presence of God</strong>. \"In thy presence is fulness of joy; at thy right hand there are pleasures for evermore\" (Psalms 16:11). Heaven's supreme attraction is not golden streets or pearly gates but face-to-face communion with the Triune God. \"They shall see his face\" (Revelation 22:4)—the beatific vision that satisfies every longing and surpasses every earthly pleasure.</p>\n\n<p class=\"intro-text\">The Bible reveals that believers who die go immediately to be with Christ, which is \"far better\" (Philippians 1:23) than earthly existence. Yet this intermediate state awaits the final resurrection when glorified bodies reunite with perfected souls. The new heavens and new earth will provide the eternal dwelling place where righteousness dwells and God's kingdom is fully consummated.</p>\n\n<p class=\"intro-text\">Heavenly hope transforms earthly living. Those who truly anticipate heaven hold earthly possessions loosely, endure suffering patiently, serve sacrificially, and witness urgently. \"Set your affection on things above, not on things on the earth\" (Colossians 3:2). This is not escapism but proper perspective—living in light of eternity.</p>",
|
||||
"subtopics": {
|
||||
"God's Dwelling": {
|
||||
"description": "Heaven as God's throne",
|
||||
"verses": [
|
||||
{"ref": "Psalms 11:4", "note": "The LORD's throne is in heaven"},
|
||||
{"ref": "Matthew 6:9", "note": "Our Father which art in heaven"},
|
||||
{"ref": "Isaiah 66:1", "note": "Heaven is my throne"},
|
||||
{"ref": "Revelation 4:2", "note": "A throne was set in heaven"}
|
||||
]
|
||||
},
|
||||
"Believers' Hope": {
|
||||
"description": "Heaven as inheritance",
|
||||
"verses": [
|
||||
{"ref": "John 14:2-3", "note": "I go to prepare a place for you"},
|
||||
{"ref": "1 Peter 1:4", "note": "Inheritance reserved in heaven"},
|
||||
{"ref": "Philippians 3:20", "note": "Our conversation is in heaven"},
|
||||
{"ref": "2 Corinthians 5:1", "note": "House not made with hands"}
|
||||
]
|
||||
},
|
||||
"Heaven's Glory": {
|
||||
"description": "The beauty of heaven",
|
||||
"verses": [
|
||||
{"ref": "Revelation 21:4", "note": "No more death, sorrow, or crying"},
|
||||
{"ref": "Revelation 22:5", "note": "No need of sun"},
|
||||
{"ref": "Revelation 21:21", "note": "Streets of pure gold"},
|
||||
{"ref": "1 Corinthians 2:9", "note": "Eye hath not seen"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Judgment": {
|
||||
"description": "God's righteous evaluation of all human beings",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Divine judgment</span> stands as a sobering reality that all humanity must face. \"It is appointed unto men once to die, but after this the judgment\" (Hebrews 9:27). Scripture consistently teaches that God will hold every person accountable for their lives—thoughts, words, and deeds. This truth, while unsettling to the impenitent, provides comfort to those who trust in Christ's righteousness.</p>\n\n<p class=\"intro-text\">God's judgment is <strong>certain</strong>—no one will escape. It is <strong>just</strong>—perfectly fair, without favoritism or error. It is <strong>comprehensive</strong>—including even secret things. \"God shall bring every work into judgment, with every secret thing, whether it be good, or whether it be evil\" (Ecclesiastes 12:14). It is <strong>final</strong>—no appeals, no second chances. The Judge of all the earth will do right (Genesis 18:25).</p>\n\n<p class=\"intro-text\">For unbelievers, judgment means condemnation based on their works, which inevitably fall short of God's perfect standard. For believers, judgment has two aspects: Christ bore their condemnation at the cross (\"There is therefore now no condemnation to them which are in Christ Jesus\" - Romans 8:1), yet they will still face evaluation of their works for rewards at Christ's judgment seat (2 Corinthians 5:10).</p>\n\n<p class=\"intro-text\">The doctrine of judgment motivates holy living, urgent evangelism, and humble gratitude. Those who grasp the reality of judgment flee to Christ for refuge and warn others to do the same. Far from producing morbid fear, proper understanding of judgment produces wisdom: \"The fear of the LORD is the beginning of wisdom\" (Proverbs 9:10).</p>",
|
||||
"subtopics": {
|
||||
"Certainty of Judgment": {
|
||||
"description": "Judgment is unavoidable",
|
||||
"verses": [
|
||||
{"ref": "Hebrews 9:27", "note": "Appointed unto men to die, then judgment"},
|
||||
{"ref": "Romans 14:12", "note": "Give account of himself to God"},
|
||||
{"ref": "Ecclesiastes 12:14", "note": "Every work into judgment"},
|
||||
{"ref": "Acts 17:31", "note": "Appointed a day to judge"}
|
||||
]
|
||||
},
|
||||
"Christ the Judge": {
|
||||
"description": "Jesus as righteous judge",
|
||||
"verses": [
|
||||
{"ref": "John 5:22", "note": "Father committed all judgment unto the Son"},
|
||||
{"ref": "2 Timothy 4:1", "note": "Judge the quick and the dead"},
|
||||
{"ref": "Acts 10:42", "note": "Ordained to be the Judge"},
|
||||
{"ref": "Matthew 25:31-32", "note": "Shall sit upon the throne of his glory"}
|
||||
]
|
||||
},
|
||||
"Believers' Judgment": {
|
||||
"description": "Evaluation of Christians' works",
|
||||
"verses": [
|
||||
{"ref": "2 Corinthians 5:10", "note": "Judgment seat of Christ"},
|
||||
{"ref": "Romans 8:1", "note": "No condemnation in Christ"},
|
||||
{"ref": "1 Corinthians 3:13-15", "note": "Fire shall try every man's work"},
|
||||
{"ref": "Romans 14:10", "note": "Stand before the judgment seat"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"The Church": {
|
||||
"description": "The body of Christ, the community of all believers",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">The church constitutes</span> God's new covenant community, comprised of all who have been redeemed by Christ's blood and regenerated by His Spirit. The Greek word <em>ekklesia</em> means \"called out ones\"—those whom God has summoned from darkness into His marvelous light. The church exists both universally (all believers everywhere) and locally (visible congregations in specific places).</p>\n\n<p class=\"intro-text\">Scripture employs rich metaphors to describe the church. It is <strong>Christ's body</strong>, with Jesus as Head and believers as interdependent members (1 Corinthians 12). It is <strong>God's temple</strong>, a spiritual house where the Holy Spirit dwells (Ephesians 2:21-22). It is <strong>Christ's bride</strong>, loved and purified by Him for presentation in splendor (Ephesians 5:25-27). It is <strong>God's family</strong>, with believers as brothers and sisters adopted by the Father (Galatians 3:26).</p>\n\n<p class=\"intro-text\">Christ established the church and promised that the gates of hell would not prevail against it (Matthew 16:18). He gave the church its ordinances (baptism and the Lord's Supper), its mission (making disciples of all nations), its leaders (pastors, elders, deacons), and its spiritual gifts for mutual edification. The church is not a human organization but a divine organism, though it takes organizational form in local expressions.</p>\n\n<p class=\"intro-text\">Active participation in a local church is not optional for believers. Scripture commands us not to forsake assembling together (Hebrews 10:25) and describes Christians using one another to build up the body. Isolated Christianity contradicts biblical Christianity. The church, with all its imperfections, remains God's primary instrument for evangelism, discipleship, and displaying His glory to the world.</p>",
|
||||
"subtopics": {
|
||||
"Body of Christ": {
|
||||
"description": "The church as Christ's body",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 12:27", "note": "Ye are the body of Christ"},
|
||||
{"ref": "Ephesians 1:22-23", "note": "Church, which is his body"},
|
||||
{"ref": "Colossians 1:18", "note": "Head of the body, the church"},
|
||||
{"ref": "Romans 12:5", "note": "One body in Christ"}
|
||||
]
|
||||
},
|
||||
"Gathering Together": {
|
||||
"description": "The importance of assembly",
|
||||
"verses": [
|
||||
{"ref": "Hebrews 10:25", "note": "Not forsaking the assembling"},
|
||||
{"ref": "Matthew 18:20", "note": "Where two or three are gathered"},
|
||||
{"ref": "Acts 2:42", "note": "Continued steadfastly in fellowship"},
|
||||
{"ref": "1 Corinthians 14:26", "note": "When ye come together"}
|
||||
]
|
||||
},
|
||||
"Christ's Love for the Church": {
|
||||
"description": "Jesus' devotion to His bride",
|
||||
"verses": [
|
||||
{"ref": "Ephesians 5:25", "note": "Christ loved the church"},
|
||||
{"ref": "Acts 20:28", "note": "Purchased with his own blood"},
|
||||
{"ref": "Ephesians 5:27", "note": "Present it to himself glorious"},
|
||||
{"ref": "Matthew 16:18", "note": "I will build my church"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Stewardship": {
|
||||
"description": "Managing God's resources faithfully for His glory",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Stewardship recognizes</span> a fundamental reality: everything belongs to God. \"The earth is the LORD's, and the fulness thereof; the world, and they that dwell therein\" (Psalms 24:1). Humans are not owners but stewards—managers entrusted with resources that ultimately belong to Another. This truth transforms how we view possessions, time, abilities, and even our very lives.</p>\n\n<p class=\"intro-text\">Biblical stewardship extends beyond finances (though it certainly includes them). We are stewards of <strong>time</strong>—\"redeeming the time, because the days are evil\" (Ephesians 5:16). We are stewards of <strong>talents</strong>—spiritual gifts given for building up Christ's body. We are stewards of <strong>truth</strong>—the gospel entrusted to us for proclamation. We are stewards of <strong>treasure</strong>—material resources to be used for God's kingdom purposes.</p>\n\n<p class=\"intro-text\">The parable of the talents (Matthew 25:14-30) teaches crucial principles. God distributes resources according to His wisdom, not equally but appropriately. He expects multiplication, not mere preservation. He will call us to account for how we used what He provided. Faithful stewardship leads to increased responsibility and reward; unfaithfulness leads to loss and condemnation.</p>\n\n<p class=\"intro-text\">Generous giving demonstrates trust in God's provision and reflects His own generous character. \"God loveth a cheerful giver\" (2 Corinthians 9:7). Yet stewardship involves not just giving but wise management of what we retain. Christians should work diligently, spend thoughtfully, save prudently, and give liberally—all as acts of worship to the Owner of all things.</p>",
|
||||
"subtopics": {
|
||||
"God Owns Everything": {
|
||||
"description": "Divine ownership",
|
||||
"verses": [
|
||||
{"ref": "Psalms 24:1", "note": "The earth is the LORD's"},
|
||||
{"ref": "Haggai 2:8", "note": "Silver and gold are mine"},
|
||||
{"ref": "1 Chronicles 29:14", "note": "All things come of thee"},
|
||||
{"ref": "Deuteronomy 8:18", "note": "He giveth thee power to get wealth"}
|
||||
]
|
||||
},
|
||||
"Faithful Management": {
|
||||
"description": "Using resources wisely",
|
||||
"verses": [
|
||||
{"ref": "Luke 16:10", "note": "Faithful in that which is least"},
|
||||
{"ref": "Matthew 25:21", "note": "Well done, good and faithful servant"},
|
||||
{"ref": "1 Corinthians 4:2", "note": "Required in stewards to be faithful"},
|
||||
{"ref": "1 Peter 4:10", "note": "Good stewards of the grace of God"}
|
||||
]
|
||||
},
|
||||
"Generous Giving": {
|
||||
"description": "The joy of liberality",
|
||||
"verses": [
|
||||
{"ref": "2 Corinthians 9:7", "note": "God loveth a cheerful giver"},
|
||||
{"ref": "Proverbs 11:25", "note": "Liberal soul shall be made fat"},
|
||||
{"ref": "Luke 6:38", "note": "Give, and it shall be given"},
|
||||
{"ref": "Malachi 3:10", "note": "Bring ye all the tithes"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Marriage": {
|
||||
"description": "The sacred covenant between husband and wife instituted by God",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Marriage stands</span> as God's first human institution, established in Eden before the fall. \"Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh\" (Genesis 2:24). This foundational relationship pictures an even greater reality—Christ's love for His church (Ephesians 5:31-32). Marriage is thus both practically significant and profoundly symbolic.</p>\n\n<p class=\"intro-text\">Scripture defines marriage as a <strong>covenant</strong> between one man and one woman for life. Jesus affirmed this creation pattern: \"From the beginning of the creation God made them male and female\" (Mark 10:6). This exclusive, permanent union reflects God's faithful love and provides the context for sexual intimacy, procreation, and companionship. \"Marriage is honourable in all\" (Hebrews 13:4).</p>\n\n<p class=\"intro-text\">God assigns complementary roles within marriage. Husbands are called to love their wives sacrificially, as Christ loved the church—leading with gentleness, providing protection, and caring for her needs (Ephesians 5:25-28). Wives are called to respect and submit to their husbands, supporting their leadership and helping them fulfill their calling (Ephesians 5:22-24, 33). These roles do not imply inequality but reflect God's beautiful design for unity in diversity.</p>\n\n<p class=\"intro-text\">Christian marriage requires continual cultivation: communication, forgiveness, prayer, service, and renewed commitment. Divorce, while permitted in certain circumstances, was never God's intent—\"What therefore God hath joined together, let not man put asunder\" (Matthew 19:6). A godly marriage glorifies God, blesses the couple, provides stability for children, and witnesses to the world of gospel realities.</p>",
|
||||
"subtopics": {
|
||||
"God's Design": {
|
||||
"description": "Marriage as God intended",
|
||||
"verses": [
|
||||
{"ref": "Genesis 2:24", "note": "Leave and cleave, one flesh"},
|
||||
{"ref": "Matthew 19:4-6", "note": "What God hath joined together"},
|
||||
{"ref": "Hebrews 13:4", "note": "Marriage is honourable"},
|
||||
{"ref": "Proverbs 18:22", "note": "Findeth a wife findeth a good thing"}
|
||||
]
|
||||
},
|
||||
"Husbands and Wives": {
|
||||
"description": "Roles in marriage",
|
||||
"verses": [
|
||||
{"ref": "Ephesians 5:25", "note": "Husbands, love your wives"},
|
||||
{"ref": "Ephesians 5:22", "note": "Wives, submit unto your husbands"},
|
||||
{"ref": "Colossians 3:19", "note": "Love your wives, be not bitter"},
|
||||
{"ref": "1 Peter 3:7", "note": "Dwell with them according to knowledge"}
|
||||
]
|
||||
},
|
||||
"Christ and the Church": {
|
||||
"description": "Marriage as gospel picture",
|
||||
"verses": [
|
||||
{"ref": "Ephesians 5:31-32", "note": "A great mystery: Christ and church"},
|
||||
{"ref": "Revelation 19:7", "note": "Marriage of the Lamb"},
|
||||
{"ref": "2 Corinthians 11:2", "note": "Espoused to one husband"},
|
||||
{"ref": "Isaiah 54:5", "note": "Thy Maker is thine husband"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Work": {
|
||||
"description": "Labor as calling, service to God, and care for others",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Work is not</span> a consequence of the fall but a pre-fall blessing. God placed Adam in Eden \"to dress it and to keep it\" (Genesis 2:15) before sin entered the world. The curse affected work—adding toil, sweat, and frustration—but did not create it. Work reflects the image of God, who Himself works in creating, sustaining, and redeeming. Therefore, human labor possesses inherent dignity and purpose.</p>\n\n<p class=\"intro-text\">Scripture transforms our understanding of work. Every legitimate occupation becomes a <strong>calling</strong> when pursued for God's glory. \"Whether therefore ye eat, or drink, or whatsoever ye do, do all to the glory of God\" (1 Corinthians 10:31). The carpenter, teacher, farmer, and administrator all serve God through their labors. This \"Protestant work ethic\" elevates ordinary work to sacred significance.</p>\n\n<p class=\"intro-text\">Christian workers should be marked by <strong>excellence</strong> (\"whatsoever ye do, do it heartily, as to the Lord\" - Colossians 3:23), <strong>integrity</strong> (honest dealings, keeping commitments), <strong>diligence</strong> (\"not slothful in business\" - Romans 12:11), and <strong>contentment</strong> (neither workaholism nor laziness). Work provides for family needs (\"if any provide not for his own... he hath denied the faith\" - 1 Timothy 5:8) and enables generosity to others.</p>\n\n<p class=\"intro-text\">Yet work is not ultimate. The Sabbath principle reminds us that we are more than our productivity. Rest acknowledges our dependence on God and anticipates the eternal rest to come. A balanced life integrates work, rest, worship, and relationships—all ordered under God's lordship.</p>",
|
||||
"subtopics": {
|
||||
"Work as Worship": {
|
||||
"description": "Laboring for God's glory",
|
||||
"verses": [
|
||||
{"ref": "Colossians 3:23-24", "note": "Do it heartily, as to the Lord"},
|
||||
{"ref": "1 Corinthians 10:31", "note": "Do all to the glory of God"},
|
||||
{"ref": "Ephesians 6:7", "note": "With good will doing service"},
|
||||
{"ref": "Ecclesiastes 9:10", "note": "Whatsoever thy hand findeth to do"}
|
||||
]
|
||||
},
|
||||
"Diligence": {
|
||||
"description": "Working faithfully",
|
||||
"verses": [
|
||||
{"ref": "Proverbs 10:4", "note": "Hand of the diligent maketh rich"},
|
||||
{"ref": "Proverbs 12:24", "note": "Hand of the diligent shall bear rule"},
|
||||
{"ref": "2 Thessalonians 3:10", "note": "If any would not work"},
|
||||
{"ref": "Proverbs 6:6-8", "note": "Go to the ant, thou sluggard"}
|
||||
]
|
||||
},
|
||||
"Rest": {
|
||||
"description": "Sabbath and restoration",
|
||||
"verses": [
|
||||
{"ref": "Exodus 20:8-10", "note": "Remember the sabbath day"},
|
||||
{"ref": "Mark 6:31", "note": "Come apart and rest a while"},
|
||||
{"ref": "Matthew 11:28", "note": "I will give you rest"},
|
||||
{"ref": "Hebrews 4:9-10", "note": "A rest to the people of God"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Spiritual Warfare": {
|
||||
"description": "The believer's battle against Satan and spiritual forces of evil",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Spiritual warfare</span> is not metaphor but reality. Behind visible human conflicts lies an invisible cosmic battle. \"We wrestle not against flesh and blood, but against principalities, against powers, against the rulers of the darkness of this world, against spiritual wickedness in high places\" (Ephesians 6:12). Christians who ignore this dimension remain vulnerable to attacks they do not understand.</p>\n\n<p class=\"intro-text\">The enemy is real. Satan, a fallen angel of great power and cunning, leads demonic forces in opposition to God's purposes. He is called \"the prince of this world\" (John 12:31), \"the god of this world\" (2 Corinthians 4:4), and \"the accuser of our brethren\" (Revelation 12:10). His strategies include deception, temptation, accusation, and persecution. Yet his power is limited, his doom is certain, and his defeat was accomplished at the cross.</p>\n\n<p class=\"intro-text\">God provides comprehensive armor for His soldiers (Ephesians 6:13-17): the belt of <strong>truth</strong> (doctrinal integrity), the breastplate of <strong>righteousness</strong> (holy living), the shoes of the <strong>gospel</strong> (readiness to witness), the shield of <strong>faith</strong> (trust in God's promises), the helmet of <strong>salvation</strong> (assurance of identity), and the sword of the <strong>Spirit</strong> (Scripture's offensive power). Prayer undergirds all warfare, accessing divine resources for the battle.</p>\n\n<p class=\"intro-text\">Victory is already secured in Christ. \"Greater is he that is in you, than he that is in the world\" (1 John 4:4). \"Resist the devil, and he will flee from you\" (James 4:7). Christians fight from victory, not for victory. While vigilance remains necessary, fear is not, for nothing can separate believers from Christ's triumphant love.</p>",
|
||||
"subtopics": {
|
||||
"The Enemy": {
|
||||
"description": "Understanding Satan's schemes",
|
||||
"verses": [
|
||||
{"ref": "1 Peter 5:8", "note": "Adversary the devil walketh about"},
|
||||
{"ref": "2 Corinthians 11:14", "note": "Satan transformed as angel of light"},
|
||||
{"ref": "John 8:44", "note": "Father of lies"},
|
||||
{"ref": "Ephesians 6:11", "note": "Wiles of the devil"}
|
||||
]
|
||||
},
|
||||
"The Armor of God": {
|
||||
"description": "Divine protection and weapons",
|
||||
"verses": [
|
||||
{"ref": "Ephesians 6:13-17", "note": "The whole armour of God"},
|
||||
{"ref": "2 Corinthians 10:4", "note": "Weapons mighty through God"},
|
||||
{"ref": "Romans 13:12", "note": "Put on the armour of light"},
|
||||
{"ref": "1 Thessalonians 5:8", "note": "Breastplate of faith and love"}
|
||||
]
|
||||
},
|
||||
"Victory in Christ": {
|
||||
"description": "Assured triumph",
|
||||
"verses": [
|
||||
{"ref": "1 John 4:4", "note": "Greater is he that is in you"},
|
||||
{"ref": "James 4:7", "note": "Resist the devil"},
|
||||
{"ref": "Colossians 2:15", "note": "Triumphing over them"},
|
||||
{"ref": "Revelation 12:11", "note": "They overcame by the blood"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Temptation": {
|
||||
"description": "Enticement to sin and God's provision for victory",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Temptation is universal</span>—every believer faces it. Yet temptation is not sin; yielding to temptation is. Jesus Himself \"was in all points tempted like as we are, yet without sin\" (Hebrews 4:15). Understanding temptation's nature and God's provision enables Christians to resist and overcome rather than fall and despair.</p>\n\n<p class=\"intro-text\">Temptation's sources are threefold: the <strong>world</strong> (external pressures from a godless culture), the <strong>flesh</strong> (internal desires from our fallen nature), and the <strong>devil</strong> (spiritual attacks from Satan and demons). \"Each man is tempted when he is drawn away by his own lust, and enticed\" (James 1:14). Temptation exploits legitimate desires, twisting them toward illegitimate fulfillments.</p>\n\n<p class=\"intro-text\">God's provision against temptation is comprehensive. He promises that no temptation is irresistible: \"God is faithful, who will not suffer you to be tempted above that ye are able; but will with the temptation also make a way to escape\" (1 Corinthians 10:13). Christ's sympathy ensures understanding intercession (Hebrews 4:15-16). Scripture provides the sword to resist lies (Matthew 4:4, 7, 10). Prayer keeps us from entering temptation (Matthew 26:41).</p>\n\n<p class=\"intro-text\">Practical wisdom includes fleeing certain temptations (2 Timothy 2:22), avoiding exposure to known triggers, cultivating godly friendships, maintaining spiritual disciplines, and confessing struggles to trusted believers. Repeated failure does not mean permanent defeat—God's grace extends to restore the fallen and strengthen against future attacks.</p>",
|
||||
"subtopics": {
|
||||
"Nature of Temptation": {
|
||||
"description": "Understanding how temptation works",
|
||||
"verses": [
|
||||
{"ref": "James 1:14-15", "note": "Drawn away by his own lust"},
|
||||
{"ref": "1 John 2:16", "note": "Lust of the flesh, eyes, pride"},
|
||||
{"ref": "Genesis 3:6", "note": "Good for food, pleasant, desired"},
|
||||
{"ref": "Matthew 4:1-11", "note": "Jesus tempted by the devil"}
|
||||
]
|
||||
},
|
||||
"Way of Escape": {
|
||||
"description": "God's provision for victory",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 10:13", "note": "Will make a way to escape"},
|
||||
{"ref": "James 4:7", "note": "Resist the devil"},
|
||||
{"ref": "Hebrews 4:15-16", "note": "Grace to help in time of need"},
|
||||
{"ref": "Matthew 26:41", "note": "Watch and pray"}
|
||||
]
|
||||
},
|
||||
"Fleeing Temptation": {
|
||||
"description": "Practical wisdom",
|
||||
"verses": [
|
||||
{"ref": "2 Timothy 2:22", "note": "Flee also youthful lusts"},
|
||||
{"ref": "1 Corinthians 6:18", "note": "Flee fornication"},
|
||||
{"ref": "Genesis 39:12", "note": "Joseph fled from Potiphar's wife"},
|
||||
{"ref": "Proverbs 4:14-15", "note": "Enter not the path of the wicked"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Contentment": {
|
||||
"description": "Satisfaction in God regardless of circumstances",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Contentment represents</span> one of the rarest and most valuable graces in Christian experience. In a culture driven by endless acquisition and comparison, biblical contentment stands as countercultural witness. It is not complacency or lack of ambition but deep satisfaction in God that liberates from the tyranny of want.</p>\n\n<p class=\"intro-text\">The apostle Paul declared: \"I have learned, in whatsoever state I am, therewith to be content\" (Philippians 4:11). Notice he \"learned\" contentment—it was not automatic but cultivated through experience and faith. He specified both abundance and want, prosperity and need (4:12). True contentment does not depend on circumstances because its foundation is unchanging: God Himself and His promises.</p>\n\n<p class=\"intro-text\">Scripture identifies covetousness as both idolatry and a root of many evils. \"The love of money is the root of all evil\" (1 Timothy 6:10). \"Covetousness, which is idolatry\" (Colossians 3:5). In contrast, \"godliness with contentment is great gain\" (1 Timothy 6:6). The truly rich person is not one who has the most but one who needs the least, being satisfied in God.</p>\n\n<p class=\"intro-text\">Cultivating contentment requires focus on eternal realities, gratitude for present blessings, trust in God's provision, and freedom from comparison. \"Having food and raiment let us be therewith content\" (1 Timothy 6:8). This simplicity liberates for generosity, ministry, and enjoyment of God without the burden of insatiable desire.</p>",
|
||||
"subtopics": {
|
||||
"Learning Contentment": {
|
||||
"description": "Paul's example",
|
||||
"verses": [
|
||||
{"ref": "Philippians 4:11-12", "note": "I have learned to be content"},
|
||||
{"ref": "Philippians 4:13", "note": "I can do all things through Christ"},
|
||||
{"ref": "1 Timothy 6:6", "note": "Godliness with contentment"},
|
||||
{"ref": "1 Timothy 6:8", "note": "Food and raiment, be content"}
|
||||
]
|
||||
},
|
||||
"Freedom from Covetousness": {
|
||||
"description": "Avoiding the love of money",
|
||||
"verses": [
|
||||
{"ref": "Hebrews 13:5", "note": "Be content, He will never leave"},
|
||||
{"ref": "Luke 12:15", "note": "Life consisteth not in abundance"},
|
||||
{"ref": "1 Timothy 6:10", "note": "Love of money is root of evil"},
|
||||
{"ref": "Proverbs 30:8-9", "note": "Give me neither poverty nor riches"}
|
||||
]
|
||||
},
|
||||
"Trust in God's Provision": {
|
||||
"description": "Confidence in divine care",
|
||||
"verses": [
|
||||
{"ref": "Matthew 6:31-33", "note": "Seek first the kingdom"},
|
||||
{"ref": "Psalms 37:25", "note": "Never seen the righteous forsaken"},
|
||||
{"ref": "Philippians 4:19", "note": "God shall supply all your need"},
|
||||
{"ref": "Psalms 23:1", "note": "The LORD is my shepherd; I shall not want"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Patience": {
|
||||
"description": "Enduring trials and waiting on God with steadfast faith",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Patience stands</span> among the most necessary yet difficult Christian virtues. In a culture of instant gratification, biblical patience requires supernatural grace. The Greek word <em>makrothumia</em> (longsuffering) combines \"long\" and \"temper\"—the ability to sustain composure over extended periods of trial. Scripture presents patience both as a command to obey and a fruit the Spirit produces.</p>\n\n<p class=\"intro-text\">Patience operates in multiple directions. <strong>Patience with God</strong> waits on His timing, trusting that His delays are not denials. \"Wait on the LORD: be of good courage, and he shall strengthen thine heart\" (Psalms 27:14). <strong>Patience with people</strong> forbears offenses, extending grace to those who frustrate or harm us. <strong>Patience in trials</strong> endures suffering without demanding immediate relief or abandoning faith.</p>\n\n<p class=\"intro-text\">Scripture reveals patience's fruit. \"The trying of your faith worketh patience. But let patience have her perfect work, that ye may be perfect and entire, wanting nothing\" (James 1:3-4). Trials develop patience, and patience produces maturity. There is no shortcut to spiritual depth—it requires time under pressure, sustained by grace.</p>\n\n<p class=\"intro-text\">God Himself models perfect patience. \"The Lord is not slack concerning his promise, as some men count slackness; but is longsuffering to us-ward, not willing that any should perish\" (2 Peter 3:9). His patience with sinners demonstrates both mercy and justice—providing time for repentance while guaranteeing eventual judgment. Believers reflect God's character when they extend similar patience to others.</p>",
|
||||
"subtopics": {
|
||||
"Waiting on God": {
|
||||
"description": "Patient trust in God's timing",
|
||||
"verses": [
|
||||
{"ref": "Psalms 27:14", "note": "Wait on the LORD"},
|
||||
{"ref": "Isaiah 40:31", "note": "They that wait upon the LORD"},
|
||||
{"ref": "Lamentations 3:25", "note": "Good to them that wait"},
|
||||
{"ref": "Psalms 37:7", "note": "Rest in the LORD, wait patiently"}
|
||||
]
|
||||
},
|
||||
"Patience in Trials": {
|
||||
"description": "Endurance through suffering",
|
||||
"verses": [
|
||||
{"ref": "James 1:3-4", "note": "Trying of faith worketh patience"},
|
||||
{"ref": "Romans 5:3-4", "note": "Tribulation worketh patience"},
|
||||
{"ref": "Hebrews 10:36", "note": "Ye have need of patience"},
|
||||
{"ref": "James 5:10-11", "note": "Example of the prophets"}
|
||||
]
|
||||
},
|
||||
"Patience with Others": {
|
||||
"description": "Forbearing one another",
|
||||
"verses": [
|
||||
{"ref": "Colossians 3:12-13", "note": "Forbearing one another"},
|
||||
{"ref": "Ephesians 4:2", "note": "Longsuffering, forbearing in love"},
|
||||
{"ref": "1 Thessalonians 5:14", "note": "Be patient toward all men"},
|
||||
{"ref": "2 Timothy 2:24", "note": "Gentle unto all, patient"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Baptism": {
|
||||
"description": "The ordinance signifying identification with Christ in His death, burial, and resurrection",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Baptism marks</span> the public beginning of the Christian life. From the Greek <em>baptizo</em> (to immerse, submerge), this ordinance pictures spiritual reality through physical action. When believers go under the water, they identify with Christ's death and burial; when they emerge, they proclaim His resurrection and their new life in Him.</p>\n\n<p class=\"intro-text\">Scripture presents baptism as the normal response to saving faith. \"Then Peter said unto them, Repent, and be baptized every one of you in the name of Jesus Christ\" (Acts 2:38). Throughout Acts, new believers were baptized immediately upon profession of faith—the Ethiopian eunuch, the Philippian jailer, Lydia, and thousands at Pentecost. Baptism follows faith; it does not produce it.</p>\n\n<p class=\"intro-text\">The meaning of baptism encompasses multiple truths. It symbolizes <strong>union with Christ</strong>: \"buried with him in baptism, wherein also ye are risen with him\" (Colossians 2:12). It signifies <strong>cleansing from sin</strong>, though not as the cause but as the picture: \"the washing of regeneration\" (Titus 3:5). It represents <strong>entrance into the visible church</strong>, publicly identifying with Christ's body.</p>\n\n<p class=\"intro-text\">Jesus Himself was baptized, not for His own sins but to \"fulfil all righteousness\" (Matthew 3:15). His baptism inaugurated His public ministry and received divine approval: \"This is my beloved Son, in whom I am well pleased.\" Believers follow their Lord's example, obeying His command: \"Go ye therefore, and teach all nations, baptizing them in the name of the Father, and of the Son, and of the Holy Ghost\" (Matthew 28:19).</p>",
|
||||
"subtopics": {
|
||||
"Christ's Baptism": {
|
||||
"description": "Jesus' baptism and its significance",
|
||||
"verses": [
|
||||
{"ref": "Matthew 3:13-17", "note": "Jesus baptized by John"},
|
||||
{"ref": "Mark 1:9-11", "note": "Spirit descending like a dove"},
|
||||
{"ref": "Luke 3:21-22", "note": "Heaven opened after baptism"},
|
||||
{"ref": "John 1:31-34", "note": "John's witness of Christ's baptism"}
|
||||
]
|
||||
},
|
||||
"The Command to Baptize": {
|
||||
"description": "Christ's instruction for the church",
|
||||
"verses": [
|
||||
{"ref": "Matthew 28:19", "note": "Baptizing in name of Trinity"},
|
||||
{"ref": "Mark 16:16", "note": "He that believeth and is baptized"},
|
||||
{"ref": "Acts 2:38", "note": "Repent and be baptized"},
|
||||
{"ref": "Acts 22:16", "note": "Arise and be baptized"}
|
||||
]
|
||||
},
|
||||
"Meaning of Baptism": {
|
||||
"description": "Spiritual significance of the ordinance",
|
||||
"verses": [
|
||||
{"ref": "Romans 6:3-4", "note": "Buried with him by baptism"},
|
||||
{"ref": "Colossians 2:12", "note": "Buried and risen with Christ"},
|
||||
{"ref": "Galatians 3:27", "note": "Put on Christ in baptism"},
|
||||
{"ref": "1 Peter 3:21", "note": "Answer of a good conscience"}
|
||||
]
|
||||
},
|
||||
"Examples of Baptism": {
|
||||
"description": "Baptisms recorded in Acts",
|
||||
"verses": [
|
||||
{"ref": "Acts 2:41", "note": "Three thousand baptized at Pentecost"},
|
||||
{"ref": "Acts 8:36-38", "note": "Ethiopian eunuch baptized"},
|
||||
{"ref": "Acts 16:14-15", "note": "Lydia and her household"},
|
||||
{"ref": "Acts 16:33", "note": "Philippian jailer baptized"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Communion": {
|
||||
"description": "The Lord's Supper commemorating Christ's sacrifice and anticipating His return",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">The Lord's Supper</span> stands as the church's central act of worship and remembrance. Instituted by Christ on the night before His crucifixion, this meal proclaims His death until He comes again. \"This do in remembrance of me\" (Luke 22:19) commands believers to perpetuate this sacred meal throughout church history.</p>\n\n<p class=\"intro-text\">The elements carry profound meaning. The <strong>bread</strong> represents Christ's body, broken for our redemption: \"This is my body which is given for you\" (Luke 22:19). The <strong>cup</strong> signifies His blood, poured out for sin's forgiveness: \"This cup is the new testament in my blood\" (Luke 22:20). Together they proclaim the gospel in visible form—Christ's atoning death securing eternal life for all who believe.</p>\n\n<p class=\"intro-text\">Communion is both backward-looking and forward-looking. It <strong>remembers</strong> Calvary: \"as often as ye eat this bread, and drink this cup, ye do shew the Lord's death\" (1 Corinthians 11:26). It also <strong>anticipates</strong> Christ's return: \"till he come.\" The church celebrates between the cross and the crown, between redemption accomplished and redemption consummated.</p>\n\n<p class=\"intro-text\">Scripture calls for serious self-examination before partaking. \"Let a man examine himself, and so let him eat of that bread, and drink of that cup\" (1 Corinthians 11:28). Those who eat and drink unworthily bring judgment upon themselves. The table calls for confession, reconciliation, and renewed commitment. This solemn joy marks the communion of saints with their Lord and with one another.</p>",
|
||||
"subtopics": {
|
||||
"Institution of the Supper": {
|
||||
"description": "Christ establishing the ordinance",
|
||||
"verses": [
|
||||
{"ref": "Matthew 26:26-28", "note": "Take, eat; this is my body"},
|
||||
{"ref": "Mark 14:22-24", "note": "This is my blood of the new testament"},
|
||||
{"ref": "Luke 22:19-20", "note": "This do in remembrance of me"},
|
||||
{"ref": "1 Corinthians 11:23-25", "note": "The Lord's own words"}
|
||||
]
|
||||
},
|
||||
"Meaning of the Elements": {
|
||||
"description": "Significance of bread and cup",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 10:16", "note": "Communion of Christ's body and blood"},
|
||||
{"ref": "John 6:53-56", "note": "Eat my flesh, drink my blood"},
|
||||
{"ref": "1 Corinthians 11:26", "note": "Shew the Lord's death"},
|
||||
{"ref": "Exodus 12:14", "note": "Passover memorial foreshadowing"}
|
||||
]
|
||||
},
|
||||
"Worthy Participation": {
|
||||
"description": "Self-examination and preparation",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 11:27-29", "note": "Examine himself"},
|
||||
{"ref": "1 Corinthians 11:30-32", "note": "Judgment for unworthiness"},
|
||||
{"ref": "Matthew 5:23-24", "note": "Reconciliation before worship"},
|
||||
{"ref": "1 Corinthians 10:21", "note": "Cannot partake of Lord's table and devils"}
|
||||
]
|
||||
},
|
||||
"Unity of the Church": {
|
||||
"description": "Communion expressing fellowship",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 10:17", "note": "One bread, one body"},
|
||||
{"ref": "Acts 2:42", "note": "Breaking of bread together"},
|
||||
{"ref": "Acts 20:7", "note": "Gathered to break bread"},
|
||||
{"ref": "1 Corinthians 11:33", "note": "Tarry one for another"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fasting": {
|
||||
"description": "Voluntary abstinence from food for spiritual purposes",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Fasting disciplines</span> the body to strengthen the soul. This ancient practice, found throughout Scripture, involves voluntarily abstaining from food (and sometimes drink) to intensify prayer, express repentance, or seek divine guidance. Jesus fasted, the apostles fasted, and the early church fasted—establishing a pattern for believers throughout history.</p>\n\n<p class=\"intro-text\">Biblical fasting serves multiple purposes. It accompanies <strong>urgent prayer</strong>, as when Nehemiah fasted and prayed for Jerusalem's restoration. It expresses <strong>mourning and repentance</strong>, as when Nineveh fasted at Jonah's preaching. It precedes <strong>major decisions</strong>, as when the church fasted before sending out Paul and Barnabas. Physical hunger reminds the soul of its deeper hunger for God.</p>\n\n<p class=\"intro-text\">Jesus taught that fasting should be done secretly, not for public admiration. \"When thou fastest, anoint thine head, and wash thy face; That thou appear not unto men to fast, but unto thy Father which is in secret\" (Matthew 6:17-18). Hypocrites fast to be seen by others; disciples fast to be heard by God. The reward comes from the Father who sees in secret.</p>\n\n<p class=\"intro-text\">True fasting must accompany genuine heart change. Isaiah rebuked Israel's empty fasts: \"Is not this the fast that I have chosen? to loose the bands of wickedness... to deal thy bread to the hungry\" (Isaiah 58:6-7). Fasting without justice and mercy is worthless. The discipline of the body must produce transformation of character and compassion for others.</p>",
|
||||
"subtopics": {
|
||||
"Jesus' Teaching on Fasting": {
|
||||
"description": "Christ's instructions for fasting",
|
||||
"verses": [
|
||||
{"ref": "Matthew 6:16-18", "note": "Fast in secret to the Father"},
|
||||
{"ref": "Matthew 9:14-15", "note": "Bridegroom taken away, then fast"},
|
||||
{"ref": "Matthew 4:1-2", "note": "Jesus fasted forty days"},
|
||||
{"ref": "Mark 9:29", "note": "This kind goeth not out but by prayer and fasting"}
|
||||
]
|
||||
},
|
||||
"Fasting for Prayer": {
|
||||
"description": "Intensifying prayer through fasting",
|
||||
"verses": [
|
||||
{"ref": "Acts 13:2-3", "note": "Church fasted before sending missionaries"},
|
||||
{"ref": "Acts 14:23", "note": "Fasted when ordaining elders"},
|
||||
{"ref": "Nehemiah 1:4", "note": "Nehemiah fasted and prayed"},
|
||||
{"ref": "Daniel 9:3", "note": "Daniel sought God with fasting"}
|
||||
]
|
||||
},
|
||||
"Fasting in Repentance": {
|
||||
"description": "Expressing sorrow for sin",
|
||||
"verses": [
|
||||
{"ref": "Jonah 3:5-8", "note": "Nineveh's fast of repentance"},
|
||||
{"ref": "Joel 2:12", "note": "Turn with fasting and weeping"},
|
||||
{"ref": "1 Samuel 7:6", "note": "Israel fasted in repentance"},
|
||||
{"ref": "Ezra 8:21", "note": "Proclaimed a fast to seek God"}
|
||||
]
|
||||
},
|
||||
"True vs. False Fasting": {
|
||||
"description": "Heart attitude in fasting",
|
||||
"verses": [
|
||||
{"ref": "Isaiah 58:3-7", "note": "The fast God chooses"},
|
||||
{"ref": "Zechariah 7:5-6", "note": "Did ye at all fast unto me?"},
|
||||
{"ref": "Luke 18:12", "note": "Pharisee's boastful fasting"},
|
||||
{"ref": "Jeremiah 14:12", "note": "Fasting rejected without obedience"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Service": {
|
||||
"description": "Using one's gifts and abilities to serve God and others",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Christian service</span> flows from gratitude for grace received. Jesus revolutionized leadership by modeling servant-hood: \"Whosoever will be great among you, let him be your minister; And whosoever will be chief among you, let him be your servant\" (Matthew 20:26-27). The greatest in God's kingdom serve the lowliest—this inverts worldly hierarchies entirely.</p>\n\n<p class=\"intro-text\">Every believer is gifted for service. \"As every man hath received the gift, even so minister the same one to another, as good stewards of the manifold grace of God\" (1 Peter 4:10). Spiritual gifts—teaching, helping, giving, mercy, leadership, and others—equip the body of Christ for mutual edification. No gift is insignificant; no member is dispensable.</p>\n\n<p class=\"intro-text\">Service to others is service to Christ. In the parable of the sheep and goats, Jesus identifies Himself with the hungry, thirsty, stranger, naked, sick, and imprisoned: \"Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me\" (Matthew 25:40). This transforms menial tasks into sacred ministry—every cup of water given becomes an offering to Christ.</p>\n\n<p class=\"intro-text\">True service requires humility. Jesus girded Himself with a towel and washed His disciples' feet—the task of the lowest household servant. \"If I then, your Lord and Master, have washed your feet; ye also ought to wash one another's feet\" (John 13:14). Position never exempts from service; rather, position increases the obligation to serve.</p>",
|
||||
"subtopics": {
|
||||
"Christ Our Example": {
|
||||
"description": "Jesus modeling servant leadership",
|
||||
"verses": [
|
||||
{"ref": "Mark 10:45", "note": "Came not to be ministered unto"},
|
||||
{"ref": "John 13:12-17", "note": "Washing disciples' feet"},
|
||||
{"ref": "Philippians 2:5-8", "note": "Took the form of a servant"},
|
||||
{"ref": "Matthew 20:26-28", "note": "Whosoever will be great, serve"}
|
||||
]
|
||||
},
|
||||
"Gifts for Service": {
|
||||
"description": "Spiritual gifts equipping the church",
|
||||
"verses": [
|
||||
{"ref": "1 Peter 4:10-11", "note": "Minister gifts to one another"},
|
||||
{"ref": "Romans 12:6-8", "note": "Gifts differing according to grace"},
|
||||
{"ref": "1 Corinthians 12:4-7", "note": "Diversities of gifts, same Spirit"},
|
||||
{"ref": "Ephesians 4:11-12", "note": "Gifts for equipping saints"}
|
||||
]
|
||||
},
|
||||
"Serving the Least": {
|
||||
"description": "Ministry to those in need",
|
||||
"verses": [
|
||||
{"ref": "Matthew 25:35-40", "note": "Did it unto the least of these"},
|
||||
{"ref": "James 1:27", "note": "Visit orphans and widows"},
|
||||
{"ref": "Galatians 6:10", "note": "Do good unto all men"},
|
||||
{"ref": "Proverbs 19:17", "note": "He that hath pity on the poor"}
|
||||
]
|
||||
},
|
||||
"Attitude in Service": {
|
||||
"description": "Heart posture for serving",
|
||||
"verses": [
|
||||
{"ref": "Colossians 3:23-24", "note": "Whatsoever ye do, do heartily"},
|
||||
{"ref": "Galatians 5:13", "note": "By love serve one another"},
|
||||
{"ref": "1 Corinthians 15:58", "note": "Labour is not in vain"},
|
||||
{"ref": "Ephesians 6:7", "note": "With good will doing service"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Generosity": {
|
||||
"description": "Giving freely and liberally as stewards of God's blessings",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Biblical generosity</span> begins with recognizing God's ownership of all things. \"The earth is the LORD's, and the fulness thereof\" (Psalms 24:1). We are stewards, not owners—managers of resources that belong to another. This perspective transforms giving from reluctant obligation to joyful privilege.</p>\n\n<p class=\"intro-text\">God's generosity sets the standard for ours. \"For God so loved the world, that he gave his only begotten Son\" (John 3:16). The Father gave His best; the Son gave His life. Such lavish divine giving calls forth proportionate human response. \"Ye know the grace of our Lord Jesus Christ, that, though he was rich, yet for your sakes he became poor, that ye through his poverty might be rich\" (2 Corinthians 8:9).</p>\n\n<p class=\"intro-text\">Scripture promises that generosity produces blessing. \"Give, and it shall be given unto you; good measure, pressed down, and shaken together, and running over\" (Luke 6:38). This is not prosperity gospel but divine principle: those who sow bountifully reap bountifully. God entrusts more to those who prove faithful in giving, not to enrich them but to expand their capacity for generosity.</p>\n\n<p class=\"intro-text\">The heart matters more than the amount. The widow's two mites exceeded the rich men's offerings because \"she of her want did cast in all that she had\" (Mark 12:44). God measures giving by sacrifice, not sum. Cheerful, willing, sacrificial giving honors God regardless of the dollar amount.</p>",
|
||||
"subtopics": {
|
||||
"God's Generosity": {
|
||||
"description": "Divine giving as our model",
|
||||
"verses": [
|
||||
{"ref": "John 3:16", "note": "God gave His only Son"},
|
||||
{"ref": "2 Corinthians 8:9", "note": "Christ became poor for us"},
|
||||
{"ref": "Romans 8:32", "note": "Freely give us all things"},
|
||||
{"ref": "James 1:17", "note": "Every good gift from above"}
|
||||
]
|
||||
},
|
||||
"Principles of Giving": {
|
||||
"description": "How to give biblically",
|
||||
"verses": [
|
||||
{"ref": "2 Corinthians 9:6-7", "note": "Sow bountifully, cheerful giver"},
|
||||
{"ref": "Mark 12:41-44", "note": "Widow's mites, giving sacrificially"},
|
||||
{"ref": "Matthew 6:3-4", "note": "Give in secret"},
|
||||
{"ref": "1 Corinthians 16:2", "note": "Give as God has prospered"}
|
||||
]
|
||||
},
|
||||
"Promises to the Generous": {
|
||||
"description": "Blessings for those who give",
|
||||
"verses": [
|
||||
{"ref": "Luke 6:38", "note": "Give and it shall be given"},
|
||||
{"ref": "Proverbs 11:25", "note": "Liberal soul made fat"},
|
||||
{"ref": "Malachi 3:10", "note": "Prove me, open windows of heaven"},
|
||||
{"ref": "Acts 20:35", "note": "More blessed to give than receive"}
|
||||
]
|
||||
},
|
||||
"Supporting Ministry": {
|
||||
"description": "Giving to the Lord's work",
|
||||
"verses": [
|
||||
{"ref": "Galatians 6:6", "note": "Share with those who teach"},
|
||||
{"ref": "1 Timothy 5:17-18", "note": "Elders worthy of double honor"},
|
||||
{"ref": "Philippians 4:15-18", "note": "Supporting Paul's ministry"},
|
||||
{"ref": "3 John 1:5-8", "note": "Fellow helpers to the truth"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Rest": {
|
||||
"description": "Ceasing from labor to worship God and restore the soul",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Rest is</span> not laziness but obedience. God rested on the seventh day—not from exhaustion but from completion. \"And God blessed the seventh day, and sanctified it: because that in it he had rested from all his work\" (Genesis 2:3). This divine pattern establishes rest as sacred, built into creation's rhythm.</p>\n\n<p class=\"intro-text\">The Sabbath command protected workers and pointed to greater rest. \"Remember the sabbath day, to keep it holy\" (Exodus 20:8). Israel's weekly rest testified that life depends on God, not endless labor. The sabbath was gift, not burden: \"The sabbath was made for man, and not man for the sabbath\" (Mark 2:27).</p>\n\n<p class=\"intro-text\">Christ offers rest for weary souls. \"Come unto me, all ye that labour and are heavy laden, and I will give you rest. Take my yoke upon you, and learn of me; for I am meek and lowly in heart: and ye shall find rest unto your souls\" (Matthew 11:28-29). This rest comes not from ceasing activity but from ceasing self-effort—resting in Christ's finished work rather than our own striving.</p>\n\n<p class=\"intro-text\">Hebrews speaks of \"a rest to the people of God\" (Hebrews 4:9)—the ultimate sabbath of eternal fellowship with God. Present rest in Christ anticipates future rest in glory. \"There remaineth therefore a rest to the people of God. For he that is entered into his rest, he also hath ceased from his own works, as God did from his\" (Hebrews 4:9-10). Christians labor to enter that rest through faith, not works.</p>",
|
||||
"subtopics": {
|
||||
"God's Rest": {
|
||||
"description": "The divine pattern of sabbath",
|
||||
"verses": [
|
||||
{"ref": "Genesis 2:2-3", "note": "God rested on the seventh day"},
|
||||
{"ref": "Exodus 20:8-11", "note": "Remember the sabbath day"},
|
||||
{"ref": "Exodus 31:17", "note": "Sign between God and Israel"},
|
||||
{"ref": "Deuteronomy 5:12-15", "note": "Keep the sabbath holy"}
|
||||
]
|
||||
},
|
||||
"Rest in Christ": {
|
||||
"description": "Spiritual rest Jesus offers",
|
||||
"verses": [
|
||||
{"ref": "Matthew 11:28-30", "note": "Come unto me and rest"},
|
||||
{"ref": "Hebrews 4:9-10", "note": "Rest for the people of God"},
|
||||
{"ref": "Hebrews 4:3", "note": "We which believe do enter rest"},
|
||||
{"ref": "Jeremiah 6:16", "note": "Find rest for your souls"}
|
||||
]
|
||||
},
|
||||
"Trusting God's Provision": {
|
||||
"description": "Rest as expression of faith",
|
||||
"verses": [
|
||||
{"ref": "Psalms 127:2", "note": "Vain to rise up early"},
|
||||
{"ref": "Psalms 37:7", "note": "Rest in the LORD"},
|
||||
{"ref": "Isaiah 30:15", "note": "In quietness and confidence"},
|
||||
{"ref": "Psalms 46:10", "note": "Be still and know that I am God"}
|
||||
]
|
||||
},
|
||||
"Eternal Rest": {
|
||||
"description": "The ultimate sabbath in glory",
|
||||
"verses": [
|
||||
{"ref": "Revelation 14:13", "note": "Blessed are the dead, rest from labours"},
|
||||
{"ref": "Hebrews 4:11", "note": "Labour to enter that rest"},
|
||||
{"ref": "Isaiah 57:2", "note": "Enter into peace, rest"},
|
||||
{"ref": "2 Thessalonians 1:7", "note": "Rest with us"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Anxiety": {
|
||||
"description": "Overcoming worry and fear through trust in God's sovereign care",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Anxiety afflicts</span> even the strongest believers. The rapid heartbeat, racing thoughts, and overwhelming dread that accompany worry are part of fallen human experience. Scripture neither minimizes anxiety nor merely tells us to \"just stop worrying.\" Instead, it provides the remedy: redirecting our focus from circumstances to the God who controls all circumstances.</p>\n\n<p class=\"intro-text\">Jesus addressed anxiety directly in the Sermon on the Mount. \"Take no thought for your life, what ye shall eat, or what ye shall drink; nor yet for your body, what ye shall put on\" (Matthew 6:25). His argument moves from greater to lesser: if God feeds birds and clothes lilies, will He not much more care for His children? Anxiety questions God's wisdom or goodness; trust affirms both.</p>\n\n<p class=\"intro-text\">The biblical antidote to anxiety is prayer combined with thanksgiving. \"Be careful for nothing; but in every thing by prayer and supplication with thanksgiving let your requests be made known unto God. And the peace of God, which passeth all understanding, shall keep your hearts and minds through Christ Jesus\" (Philippians 4:6-7). This is not passive resignation but active transfer of burdens to the One who can bear them.</p>\n\n<p class=\"intro-text\">Fear in its various forms—fear of man, fear of the future, fear of death—finds its answer in the fear of God. \"The fear of man bringeth a snare: but whoso putteth his trust in the LORD shall be safe\" (Proverbs 29:25). When God looms larger than our problems, anxiety loses its grip. \"Fear not\" appears throughout Scripture because God knows our tendency to fear—and commands us to counter it with faith.</p>",
|
||||
"subtopics": {
|
||||
"Jesus on Worry": {
|
||||
"description": "Christ's teaching on anxiety",
|
||||
"verses": [
|
||||
{"ref": "Matthew 6:25-27", "note": "Take no thought for your life"},
|
||||
{"ref": "Matthew 6:31-34", "note": "Seek first the kingdom"},
|
||||
{"ref": "Luke 12:22-26", "note": "Consider the ravens"},
|
||||
{"ref": "John 14:27", "note": "Let not your heart be troubled"}
|
||||
]
|
||||
},
|
||||
"Prayer for Peace": {
|
||||
"description": "Exchanging anxiety for prayer",
|
||||
"verses": [
|
||||
{"ref": "Philippians 4:6-7", "note": "Be careful for nothing"},
|
||||
{"ref": "1 Peter 5:7", "note": "Casting all your care upon him"},
|
||||
{"ref": "Psalms 55:22", "note": "Cast thy burden upon the LORD"},
|
||||
{"ref": "Psalms 94:19", "note": "Thy comforts delight my soul"}
|
||||
]
|
||||
},
|
||||
"Fear of Man": {
|
||||
"description": "Overcoming people-pleasing anxiety",
|
||||
"verses": [
|
||||
{"ref": "Proverbs 29:25", "note": "Fear of man bringeth a snare"},
|
||||
{"ref": "Isaiah 51:7", "note": "Fear not the reproach of men"},
|
||||
{"ref": "Hebrews 13:6", "note": "The Lord is my helper; I will not fear"},
|
||||
{"ref": "Matthew 10:28", "note": "Fear not them which kill the body"}
|
||||
]
|
||||
},
|
||||
"God's Promises to the Fearful": {
|
||||
"description": "Assurances for the anxious",
|
||||
"verses": [
|
||||
{"ref": "Isaiah 41:10", "note": "Fear not; I am with thee"},
|
||||
{"ref": "Psalms 23:4", "note": "I will fear no evil"},
|
||||
{"ref": "Psalms 56:3", "note": "When I am afraid, I will trust"},
|
||||
{"ref": "Romans 8:15", "note": "Not received spirit of bondage to fear"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Wisdom": {
|
||||
"description": "Skill for living according to God's design and truth",
|
||||
"overview": "<p class=\"intro-text\"><span class=\"newthought\">Biblical wisdom</span> differs fundamentally from worldly intelligence. While the world prizes clever strategy and self-advancement, Scripture defines wisdom as \"the fear of the LORD\" (Proverbs 9:10). This wisdom begins with right relationship to God and produces right living before men.</p>\n\n<p class=\"intro-text\">Wisdom is personified in Proverbs, calling out in the streets: \"How long, ye simple ones, will ye love simplicity?\" (Proverbs 1:22). This literary device emphasizes wisdom's availability and urgency. She offers life to those who find her: \"Whoso findeth me findeth life, and shall obtain favour of the LORD\" (Proverbs 8:35). Christ Himself is \"the wisdom of God\" (1 Corinthians 1:24), the ultimate revelation of divine truth.</p>\n\n<p class=\"intro-text\">James distinguishes two kinds of wisdom. Earthly wisdom is \"sensual, devilish\" and produces \"envying and strife\" (James 3:14-15). But \"the wisdom that is from above is first pure, then peaceable, gentle, and easy to be intreated, full of mercy and good fruits\" (James 3:17). The source determines the character—wisdom from below serves self; wisdom from above serves God and others.</p>\n\n<p class=\"intro-text\">God promises wisdom to those who ask. \"If any of you lack wisdom, let him ask of God, that giveth to all men liberally, and upbraideth not; and it shall be given him\" (James 1:5). This liberality encourages persistent prayer for discernment. Solomon asked for wisdom above all else and received not only wisdom but riches and honor as well (1 Kings 3:9-13).</p>",
|
||||
"subtopics": {
|
||||
"The Fear of the Lord": {
|
||||
"description": "Beginning of wisdom",
|
||||
"verses": [
|
||||
{"ref": "Proverbs 9:10", "note": "Fear of the LORD is beginning of wisdom"},
|
||||
{"ref": "Proverbs 1:7", "note": "Fear of the LORD beginning of knowledge"},
|
||||
{"ref": "Job 28:28", "note": "Fear of the Lord, that is wisdom"},
|
||||
{"ref": "Psalms 111:10", "note": "Good understanding to all who do them"}
|
||||
]
|
||||
},
|
||||
"Seeking Wisdom": {
|
||||
"description": "How to obtain wisdom",
|
||||
"verses": [
|
||||
{"ref": "James 1:5", "note": "Ask of God liberally"},
|
||||
{"ref": "Proverbs 2:1-6", "note": "Seek as silver, search as treasure"},
|
||||
{"ref": "Proverbs 4:7", "note": "Wisdom is the principal thing"},
|
||||
{"ref": "1 Kings 3:9-12", "note": "Solomon's request for wisdom"}
|
||||
]
|
||||
},
|
||||
"Christ Our Wisdom": {
|
||||
"description": "Jesus as God's wisdom",
|
||||
"verses": [
|
||||
{"ref": "1 Corinthians 1:24", "note": "Christ the wisdom of God"},
|
||||
{"ref": "1 Corinthians 1:30", "note": "Made unto us wisdom"},
|
||||
{"ref": "Colossians 2:3", "note": "All treasures of wisdom hidden in Christ"},
|
||||
{"ref": "Matthew 12:42", "note": "Greater than Solomon"}
|
||||
]
|
||||
},
|
||||
"Wisdom vs. Folly": {
|
||||
"description": "The two paths",
|
||||
"verses": [
|
||||
{"ref": "James 3:13-17", "note": "Earthly vs. heavenly wisdom"},
|
||||
{"ref": "Proverbs 14:12", "note": "Way seemeth right but ends in death"},
|
||||
{"ref": "1 Corinthians 3:19", "note": "Wisdom of world is foolishness"},
|
||||
{"ref": "Proverbs 12:15", "note": "Fool is right in own eyes"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -15,6 +15,7 @@ from ..interlinear_loader import get_interlinear_data, has_interlinear_data
|
||||
from ..utils.books import normalize_book_name, OT_BOOKS
|
||||
from ..utils.search import perform_full_text_search
|
||||
from ..utils.helpers import get_daily_verse, create_slug
|
||||
from ..books import get_book_data, get_all_books_metadata, has_book_data
|
||||
from ..stories import (
|
||||
get_categories,
|
||||
get_story_by_slug,
|
||||
@@ -431,7 +432,7 @@ def api_get_interlinear(
|
||||
|
||||
@router.get("/books")
|
||||
def api_get_books():
|
||||
"""Get list of all Bible books."""
|
||||
"""Get list of all Bible books with metadata."""
|
||||
books = list(bible.iter_books())
|
||||
|
||||
old_testament = []
|
||||
@@ -439,12 +440,21 @@ def api_get_books():
|
||||
|
||||
for book in books:
|
||||
chapters = [ch for bk, ch in bible.iter_chapters() if bk == book]
|
||||
book_data = get_book_data(book) if has_book_data(book) else None
|
||||
|
||||
book_info = {
|
||||
"name": book,
|
||||
"chapters": len(chapters),
|
||||
"testament": "Old Testament" if book in OT_BOOKS else "New Testament"
|
||||
}
|
||||
|
||||
# Add metadata from book introductions if available
|
||||
if book_data:
|
||||
book_info["abbreviation"] = book_data.get("abbreviation")
|
||||
book_info["category"] = book_data.get("category")
|
||||
book_info["author"] = book_data.get("author")
|
||||
book_info["position"] = book_data.get("position")
|
||||
|
||||
if book in OT_BOOKS:
|
||||
old_testament.append(book_info)
|
||||
else:
|
||||
@@ -459,7 +469,7 @@ def api_get_books():
|
||||
|
||||
@router.get("/books/{book}")
|
||||
def api_get_book(book: str = Path(..., description="Book name", examples=["Genesis"])):
|
||||
"""Get details about a specific book."""
|
||||
"""Get details about a specific book including introduction and study material."""
|
||||
canonical_name = normalize_book_name(book)
|
||||
if canonical_name:
|
||||
book = canonical_name
|
||||
@@ -476,7 +486,7 @@ def api_get_book(book: str = Path(..., description="Book name", examples=["Genes
|
||||
"verses": len(verses)
|
||||
})
|
||||
|
||||
return {
|
||||
result = {
|
||||
"name": book,
|
||||
"total_chapters": len(chapters),
|
||||
"chapters": chapter_details,
|
||||
@@ -485,6 +495,26 @@ def api_get_book(book: str = Path(..., description="Book name", examples=["Genes
|
||||
}
|
||||
}
|
||||
|
||||
# Add book introduction data if available
|
||||
book_data = get_book_data(book) if has_book_data(book) else None
|
||||
if book_data:
|
||||
result["abbreviation"] = book_data.get("abbreviation")
|
||||
result["testament"] = book_data.get("testament")
|
||||
result["position"] = book_data.get("position")
|
||||
result["category"] = book_data.get("category")
|
||||
result["author"] = book_data.get("author")
|
||||
result["date_written"] = book_data.get("date_written")
|
||||
result["introduction"] = book_data.get("introduction")
|
||||
result["key_themes"] = book_data.get("key_themes")
|
||||
result["key_verses"] = book_data.get("key_verses")
|
||||
result["outline"] = book_data.get("outline")
|
||||
result["historical_context"] = book_data.get("historical_context")
|
||||
result["literary_style"] = book_data.get("literary_style")
|
||||
result["christ_in_book"] = book_data.get("christ_in_book")
|
||||
result["practical_application"] = book_data.get("practical_application")
|
||||
|
||||
return result
|
||||
|
||||
|
||||
@router.get("/books/{book}/pdf")
|
||||
def api_book_pdf(book: str = Path(..., description="Book name", examples=["Genesis"])):
|
||||
|
||||
@@ -23,6 +23,7 @@ from .cross_references import get_cross_references
|
||||
from .reading_plans import get_plan, get_all_plans, get_plan_summary
|
||||
from .topics import get_all_topics, get_topic, search_topics
|
||||
from .interlinear_loader import get_interlinear_data, has_interlinear_data, get_all_interlinear_verses, preload_data
|
||||
from .books import get_book_data, has_book_data
|
||||
|
||||
# Import from modular packages
|
||||
from .routes import (
|
||||
@@ -2144,6 +2145,9 @@ def read_book(request: Request, book: str):
|
||||
chapter_popularity[chapter] = get_chapter_popularity_score(book, chapter)
|
||||
chapter_explanations[chapter] = get_chapter_popularity_explanation(book, chapter)
|
||||
|
||||
# Get book introduction data if available
|
||||
book_intro = get_book_data(book) if has_book_data(book) else None
|
||||
|
||||
# Build breadcrumbs
|
||||
breadcrumbs = [
|
||||
{"text": "Home", "url": "/"},
|
||||
@@ -2163,6 +2167,7 @@ def read_book(request: Request, book: str):
|
||||
"breadcrumbs": breadcrumbs,
|
||||
"current_book": book,
|
||||
"pdf_available": WEASYPRINT_AVAILABLE,
|
||||
"book_intro": book_intro,
|
||||
**commentary_data
|
||||
},
|
||||
)
|
||||
|
||||
@@ -13,6 +13,29 @@ section h2 + p a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.book-meta {
|
||||
color: var(--text-secondary, #666);
|
||||
font-size: 0.95rem;
|
||||
margin-top: -0.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
section blockquote {
|
||||
margin: 1rem 0 1.5rem;
|
||||
padding-left: 1rem;
|
||||
border-left: 3px solid var(--border-color, #ddd);
|
||||
}
|
||||
|
||||
section blockquote p {
|
||||
font-style: italic;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
section blockquote footer {
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-secondary, #666);
|
||||
}
|
||||
|
||||
.book-actions {
|
||||
margin: 1.5rem 0 1.5rem;
|
||||
}
|
||||
@@ -125,6 +148,14 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
<h1>{{ book }}</h1>
|
||||
<p class="subtitle"><a href="/books">Authorized King James Version</a></p>
|
||||
|
||||
{% if book_intro %}
|
||||
<p class="book-meta">
|
||||
{% if book_intro.author %}<strong>Author:</strong> {{ book_intro.author }}{% endif %}
|
||||
{% if book_intro.date_written %} · <strong>Written:</strong> {{ book_intro.date_written }}{% endif %}
|
||||
{% if book_intro.category %} · <strong>Category:</strong> {{ book_intro.category }}{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
{% if pdf_available %}
|
||||
<div class="book-actions">
|
||||
<a href="/book/{{ book }}/pdf" class="print-btn">
|
||||
@@ -148,28 +179,56 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
</p>
|
||||
</section>
|
||||
|
||||
{% if introduction %}
|
||||
{% if book_intro and book_intro.introduction %}
|
||||
<section>
|
||||
<h2>Introduction</h2>
|
||||
<p>{{ book_intro.introduction }}</p>
|
||||
</section>
|
||||
{% elif introduction %}
|
||||
<section>
|
||||
<h2>Introduction</h2>
|
||||
{{ introduction|safe }}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if historical_context %}
|
||||
{% if book_intro and book_intro.outline %}
|
||||
<section>
|
||||
<h2>Historical Context</h2>
|
||||
{{ historical_context|safe }}
|
||||
<h2>Book Outline</h2>
|
||||
<ul>
|
||||
{% for item in book_intro.outline %}
|
||||
<li><strong>{{ item.section }}</strong> ({{ item.chapters }}) — {{ item.description }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if themes %}
|
||||
{% if book_intro and book_intro.key_themes %}
|
||||
<section>
|
||||
<h2>Key Themes</h2>
|
||||
<ul>
|
||||
{% for theme in book_intro.key_themes %}
|
||||
<li>{{ theme }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
{% elif themes %}
|
||||
<section>
|
||||
<h2>Major Themes</h2>
|
||||
{{ themes|safe }}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if key_passages %}
|
||||
{% if book_intro and book_intro.key_verses %}
|
||||
<section>
|
||||
<h2>Key Verses</h2>
|
||||
{% for verse in book_intro.key_verses %}
|
||||
<blockquote>
|
||||
<p>{{ verse.text }}</p>
|
||||
<footer>— {{ verse.reference }}</footer>
|
||||
</blockquote>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% elif key_passages %}
|
||||
<section>
|
||||
<h2>Key Passages</h2>
|
||||
<ul>
|
||||
@@ -180,6 +239,39 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if book_intro and book_intro.historical_context %}
|
||||
<section>
|
||||
<h2>Historical Context</h2>
|
||||
<p>{{ book_intro.historical_context }}</p>
|
||||
</section>
|
||||
{% elif historical_context %}
|
||||
<section>
|
||||
<h2>Historical Context</h2>
|
||||
{{ historical_context|safe }}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if book_intro and book_intro.literary_style %}
|
||||
<section>
|
||||
<h2>Literary Style</h2>
|
||||
<p>{{ book_intro.literary_style }}</p>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if book_intro and book_intro.christ_in_book %}
|
||||
<section>
|
||||
<h2>Christ in {{ book }}</h2>
|
||||
<p>{{ book_intro.christ_in_book }}</p>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
{% if book_intro and book_intro.practical_application %}
|
||||
<section>
|
||||
<h2>Practical Application</h2>
|
||||
<p>{{ book_intro.practical_application }}</p>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
<nav>
|
||||
<p><a href="/">← All Books</a></p>
|
||||
</nav>
|
||||
|
||||
Reference in New Issue
Block a user