mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
df67749532
This commit completes a comprehensive data migration, externalizing all hardcoded theological content from Python modules to structured JSON files in the data/ directory. ## Changes ### New JSON Data Files (3 files, 356 KB total) - **study_guides.json** (265 KB): 25 complete study guides with 183 sections and 732 verse references - 6 categories: Foundational, Character & Living, Biblical Themes, Doctrinal, Thematic, Family - **word_studies.json** (35 KB): 53 biblical terms with Hebrew/Greek definitions - Includes transliterations, meanings, and theological notes for OT and NT - **verse_commentary.json** (56 KB): 22 verses with detailed theological analysis - Includes analysis, historical context, applications, and reflection questions ### Code Refactoring **routes/study_guides.py** (1,248 lines removed, 85% reduction) - Replaced 1,070 lines of hardcoded study guide content with JSON loader - File reduced from 1,463 lines to 215 lines - Added @lru_cache JSON loaders for performance - Removed `_get_study_guides_catalog_old()` and `_get_study_guides_content_old()` **routes/commentary.py** (496 lines removed, 11.7% reduction) - Replaced 494 lines of hardcoded word studies and verse commentary - File reduced from 4,222 lines to 3,726 lines - Added structured JSON loaders with data transformation: - `_load_word_studies()`: Converts flat JSON to nested OT/NT structure - `_load_verse_commentary()`: Parses verse references into book/chapter/verse hierarchy - Removed hardcoded `word_studies` (226 lines) and `enhanced_commentary` (268 lines) dictionaries ## Benefits - **Maintainability**: Non-developers can now edit theological content in JSON - **Performance**: @lru_cache ensures data loaded once per process - **Separation of Concerns**: Content separated from application logic - **Version Control**: Easier to track content changes in structured format - **Scalability**: Can add new study guides/commentary without code changes ## Testing - All 252 tests pass - Verified data structure compatibility - Confirmed JSON loaders work correctly with existing templates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
2273 lines
266 KiB
JSON
2273 lines
266 KiB
JSON
{
|
|
"catalog": {
|
|
"Foundational Studies": [
|
|
{
|
|
"title": "New Believer's Guide",
|
|
"description": "Essential truths for new Christians",
|
|
"slug": "new-believer",
|
|
"verses": [
|
|
"John 3:16",
|
|
"Romans 10:9",
|
|
"1 John 1:9",
|
|
"2 Corinthians 5:17"
|
|
]
|
|
},
|
|
{
|
|
"title": "Salvation by Grace",
|
|
"description": "Understanding God's gift of salvation",
|
|
"slug": "salvation",
|
|
"verses": [
|
|
"Ephesians 2:8-9",
|
|
"Romans 3:23",
|
|
"Romans 6:23",
|
|
"Titus 3:5"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Gospel Message",
|
|
"description": "The good news of Jesus Christ",
|
|
"slug": "gospel",
|
|
"verses": [
|
|
"1 Corinthians 15:3-4",
|
|
"Romans 1:16",
|
|
"Mark 16:15",
|
|
"Acts 4:12"
|
|
]
|
|
}
|
|
],
|
|
"Character & Living": [
|
|
{
|
|
"title": "Fruits of the Spirit",
|
|
"description": "Developing Christian character",
|
|
"slug": "fruits-spirit",
|
|
"verses": [
|
|
"Galatians 5:22-23",
|
|
"1 Corinthians 13:4-7",
|
|
"Philippians 4:8",
|
|
"Colossians 3:12-14"
|
|
]
|
|
},
|
|
{
|
|
"title": "Prayer & Faith",
|
|
"description": "Growing in prayer and trust",
|
|
"slug": "prayer-faith",
|
|
"verses": [
|
|
"Matthew 6:9-13",
|
|
"1 Thessalonians 5:17",
|
|
"Hebrews 11:1",
|
|
"James 1:6"
|
|
]
|
|
},
|
|
{
|
|
"title": "Christian Living",
|
|
"description": "Walking as followers of Christ",
|
|
"slug": "christian-living",
|
|
"verses": [
|
|
"Romans 12:1-2",
|
|
"1 Peter 2:9",
|
|
"Matthew 5:14-16",
|
|
"Philippians 2:14-16"
|
|
]
|
|
}
|
|
],
|
|
"Biblical Themes": [
|
|
{
|
|
"title": "God's Love",
|
|
"description": "Understanding the depth of God's love",
|
|
"slug": "gods-love",
|
|
"verses": [
|
|
"1 John 4:8",
|
|
"John 3:16",
|
|
"Romans 8:38-39",
|
|
"1 John 3:1"
|
|
]
|
|
},
|
|
{
|
|
"title": "Hope & Comfort",
|
|
"description": "Finding hope in difficult times",
|
|
"slug": "hope-comfort",
|
|
"verses": [
|
|
"Romans 15:13",
|
|
"2 Corinthians 1:3-4",
|
|
"Psalm 23:4",
|
|
"Isaiah 41:10"
|
|
]
|
|
},
|
|
{
|
|
"title": "Wisdom & Guidance",
|
|
"description": "Seeking God's wisdom for life",
|
|
"slug": "wisdom-guidance",
|
|
"verses": [
|
|
"Proverbs 3:5-6",
|
|
"James 1:5",
|
|
"Psalm 119:105",
|
|
"Proverbs 27:17"
|
|
]
|
|
}
|
|
],
|
|
"Doctrinal Studies": [
|
|
{
|
|
"title": "The Trinity",
|
|
"description": "Understanding God as Father, Son, and Holy Spirit",
|
|
"slug": "trinity",
|
|
"verses": [
|
|
"Matthew 28:19",
|
|
"2 Corinthians 13:14",
|
|
"1 Peter 1:2",
|
|
"John 14:16-17"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Resurrection",
|
|
"description": "Christ's victory over death and our hope",
|
|
"slug": "resurrection",
|
|
"verses": [
|
|
"1 Corinthians 15:20-22",
|
|
"Romans 6:4-5",
|
|
"John 11:25-26",
|
|
"1 Thessalonians 4:16-17"
|
|
]
|
|
},
|
|
{
|
|
"title": "Heaven & Eternity",
|
|
"description": "Our eternal home with God",
|
|
"slug": "heaven-eternity",
|
|
"verses": [
|
|
"Revelation 21:1-4",
|
|
"John 14:2-3",
|
|
"Philippians 3:20-21",
|
|
"1 Corinthians 2:9"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Sovereignty of God",
|
|
"description": "God's absolute rule over all things",
|
|
"slug": "sovereignty-of-god",
|
|
"verses": [
|
|
"Isaiah 46:9-10",
|
|
"Ephesians 1:11",
|
|
"Daniel 4:35",
|
|
"Romans 9:19-21"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Attributes of God",
|
|
"description": "The perfections of the divine nature",
|
|
"slug": "attributes-of-god",
|
|
"verses": [
|
|
"Exodus 34:6-7",
|
|
"Isaiah 6:3",
|
|
"1 John 4:8",
|
|
"Psalm 90:2"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Doctrine of Scripture",
|
|
"description": "The inspiration, authority, and sufficiency of God's Word",
|
|
"slug": "doctrine-of-scripture",
|
|
"verses": [
|
|
"2 Timothy 3:16-17",
|
|
"2 Peter 1:20-21",
|
|
"Psalm 19:7-9",
|
|
"Isaiah 40:8"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Problem of Evil",
|
|
"description": "God's purposes in suffering and affliction",
|
|
"slug": "problem-of-evil",
|
|
"verses": [
|
|
"Romans 8:28",
|
|
"Genesis 50:20",
|
|
"Job 1:21",
|
|
"James 1:2-4"
|
|
]
|
|
},
|
|
{
|
|
"title": "Covenant Theology",
|
|
"description": "The covenants as the framework of redemptive history",
|
|
"slug": "covenant-theology",
|
|
"verses": [
|
|
"Genesis 3:15",
|
|
"Genesis 17:7",
|
|
"Jeremiah 31:31-34",
|
|
"Hebrews 8:6"
|
|
]
|
|
},
|
|
{
|
|
"title": "Spirits & Demons",
|
|
"description": "The biblical teaching on unclean spirits and spiritual warfare",
|
|
"slug": "spirits-demons",
|
|
"verses": [
|
|
"Mark 5:9",
|
|
"Ephesians 6:12",
|
|
"1 John 4:1",
|
|
"James 2:19"
|
|
]
|
|
}
|
|
],
|
|
"Thematic Studies": [
|
|
{
|
|
"title": "The Gospel in the Old Testament",
|
|
"description": "Christ hidden in the Hebrew Scriptures",
|
|
"slug": "gospel-in-ot",
|
|
"verses": [
|
|
"Luke 24:27",
|
|
"John 5:39",
|
|
"1 Peter 1:10-12",
|
|
"Galatians 3:8"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Law and the Christian",
|
|
"description": "The three uses of the law and its ongoing relevance",
|
|
"slug": "law-and-christian",
|
|
"verses": [
|
|
"Romans 3:20",
|
|
"Galatians 3:24",
|
|
"Romans 13:8-10",
|
|
"Matthew 5:17-19"
|
|
]
|
|
},
|
|
{
|
|
"title": "Faith and Works",
|
|
"description": "James and Paul reconciled",
|
|
"slug": "faith-and-works",
|
|
"verses": [
|
|
"Ephesians 2:8-10",
|
|
"James 2:17-18",
|
|
"Romans 3:28",
|
|
"James 2:24"
|
|
]
|
|
},
|
|
{
|
|
"title": "The Scarlet Thread",
|
|
"description": "Redemption traced from Genesis to Revelation",
|
|
"slug": "scarlet-thread",
|
|
"verses": [
|
|
"Genesis 3:15",
|
|
"Exodus 12:13",
|
|
"Isaiah 53:5",
|
|
"Revelation 5:9"
|
|
]
|
|
}
|
|
],
|
|
"Family & Relationships": [
|
|
{
|
|
"title": "Biblical Marriage",
|
|
"description": "God's design for marriage",
|
|
"slug": "biblical-marriage",
|
|
"verses": [
|
|
"Ephesians 5:22-33",
|
|
"Genesis 2:24",
|
|
"1 Corinthians 7:3-5",
|
|
"Hebrews 13:4"
|
|
]
|
|
},
|
|
{
|
|
"title": "Raising Children",
|
|
"description": "Biblical principles for parenting",
|
|
"slug": "raising-children",
|
|
"verses": [
|
|
"Proverbs 22:6",
|
|
"Ephesians 6:4",
|
|
"Deuteronomy 6:6-7",
|
|
"Colossians 3:21"
|
|
]
|
|
},
|
|
{
|
|
"title": "Money & Stewardship",
|
|
"description": "Biblical wisdom on finances",
|
|
"slug": "money-stewardship",
|
|
"verses": [
|
|
"Malachi 3:10",
|
|
"Luke 16:10-11",
|
|
"1 Timothy 6:10",
|
|
"Proverbs 3:9-10"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"content": {
|
|
"new-believer": {
|
|
"title": "New Believer's Guide",
|
|
"description": "Essential truths for new Christians to understand their faith",
|
|
"sections": [
|
|
{
|
|
"title": "God's Infinite Love for You",
|
|
"verses": [
|
|
"John 3:16",
|
|
"1 John 4:9-10",
|
|
"Romans 5:8",
|
|
"Ephesians 2:4-5"
|
|
],
|
|
"content": "Scripture reveals that God's love for you transcends human comprehension. This divine love is not contingent upon your merit, worthiness, or performance\u2014it proceeds from God's very nature, for 'God is love' (1 John 4:8). While we were yet sinners, Christ died for the ungodly, demonstrating the Father's love in the most profound manner imaginable. This love is eternal, unchanging, and perfectly holy. It is not mere sentiment but covenant faithfulness, expressed supremely in the gift of His only begotten Son. Understanding this foundational truth transforms how you view yourself, your salvation, and your relationship with your Creator."
|
|
},
|
|
{
|
|
"title": "The New Birth and Regeneration",
|
|
"verses": [
|
|
"John 3:3-7",
|
|
"2 Corinthians 5:17",
|
|
"Titus 3:5",
|
|
"1 Peter 1:23"
|
|
],
|
|
"content": "Your conversion marks a supernatural transformation Scripture calls being 'born again.' This is no mere moral reformation or religious decision, but a divine act of regeneration wherein the Holy Spirit imparts spiritual life to one previously dead in trespasses and sins. You have become a new creation in Christ Jesus\u2014the old nature with its affections and desires has passed away, and behold, all things have become new. This regeneration is not of your own doing, not of works lest any man should boast, but is the gift of God accomplished by the washing of regeneration and renewing of the Holy Ghost. You are now God's workmanship, created in Christ Jesus unto good works."
|
|
},
|
|
{
|
|
"title": "Assurance of Eternal Salvation",
|
|
"verses": [
|
|
"Romans 10:9-10",
|
|
"1 John 5:11-13",
|
|
"John 10:27-29",
|
|
"Romans 8:38-39"
|
|
],
|
|
"content": "The Scriptures provide abundant grounds for assurance of your salvation. If you have confessed with your mouth the Lord Jesus and believed in your heart that God raised Him from the dead, you are saved. This is not presumption but faith resting upon God's promises. You can know that you have eternal life, for this testimony is given that God has provided life through His Son. Your salvation rests not upon your strength but upon Christ's finished work and God's faithfulness. No power in heaven or earth can separate you from God's love in Christ Jesus\u2014neither tribulation, distress, persecution, nor any creature can pluck you from the Father's hand. Rest in these immutable promises."
|
|
},
|
|
{
|
|
"title": "Growing in Grace Through God's Word",
|
|
"verses": [
|
|
"2 Peter 3:18",
|
|
"1 Peter 2:2",
|
|
"Psalm 119:105",
|
|
"2 Timothy 3:16-17"
|
|
],
|
|
"content": "As a newborn babe desires milk, so you should desire the sincere milk of the Word that you may grow thereby. The Holy Scriptures are your spiritual nourishment, given by inspiration of God and profitable for doctrine, reproof, correction, and instruction in righteousness. Daily meditation upon God's Word renews your mind, strengthens your faith, and equips you for every good work. The Bible is not merely a religious text but the very words of the living God\u2014a lamp unto your feet and a light unto your path. Commit yourself to regular, prayerful study of Scripture, allowing it to dwell in you richly and transform your understanding."
|
|
},
|
|
{
|
|
"title": "The Ministry and Power of Prayer",
|
|
"verses": [
|
|
"1 Thessalonians 5:17",
|
|
"Philippians 4:6-7",
|
|
"Matthew 6:6-8",
|
|
"Hebrews 4:16"
|
|
],
|
|
"content": "Prayer constitutes the believer's vital communion with the Almighty. Through Christ's mediation, you now have access to the throne of grace, where you may obtain mercy and find grace to help in time of need. Be anxious for nothing, but in everything by prayer and supplication with thanksgiving make your requests known unto God. Cultivate both private prayer in your closet and corporate prayer with fellow believers. Prayer is not merely asking for things but includes worship, confession, thanksgiving, and intercession. As you pray without ceasing, you maintain conscious fellowship with your Father and experience the peace of God which passes understanding."
|
|
},
|
|
{
|
|
"title": "Fellowship with Other Believers",
|
|
"verses": [
|
|
"Hebrews 10:24-25",
|
|
"Acts 2:42",
|
|
"1 Corinthians 12:12-27",
|
|
"Ephesians 4:11-16"
|
|
],
|
|
"content": "God has not called you to solitary Christianity but to membership in the body of Christ. Forsake not the assembling of yourselves together, as some do, but provoke one another unto love and good works. The early church continued steadfastly in the apostles' doctrine, fellowship, breaking of bread, and prayers. As members of Christ's body, believers possess diverse gifts intended for mutual edification. Find a Bible-believing church where the Word is faithfully preached, the ordinances properly administered, and church discipline maintained. There you will find encouragement, accountability, teaching, and opportunities for service as you grow in grace together with fellow saints."
|
|
},
|
|
{
|
|
"title": "Walking in Obedience and Holiness",
|
|
"verses": [
|
|
"1 Peter 1:15-16",
|
|
"1 John 2:3-6",
|
|
"Romans 12:1-2",
|
|
"Philippians 2:12-13"
|
|
],
|
|
"content": "Salvation is by grace through faith alone, yet genuine faith produces obedience. 'Be ye holy, for I am holy,' commands the Lord. This is not legalism but the natural fruit of regeneration\u2014we keep His commandments because we know Him and love Him. Present your bodies a living sacrifice, holy and acceptable unto God, which is your reasonable service. Be not conformed to this world but be transformed by the renewing of your mind. Work out your salvation with fear and trembling, knowing that it is God who works in you both to will and to do of His good pleasure. Pursue holiness, without which no man shall see the Lord, not as a means of earning salvation but as evidence of your new nature in Christ."
|
|
},
|
|
{
|
|
"title": "Your Commission to Share the Gospel",
|
|
"verses": [
|
|
"Matthew 28:19-20",
|
|
"Acts 1:8",
|
|
"2 Corinthians 5:18-20",
|
|
"Romans 1:16"
|
|
],
|
|
"content": "Having received the gospel, you are now commissioned to share it. Christ's command to make disciples of all nations applies to every believer\u2014you are His witness, called to proclaim the good news of salvation. God has given you the ministry of reconciliation, making you an ambassador for Christ. Be not ashamed of the gospel of Christ, for it is the power of God unto salvation to everyone who believes. Your testimony of God's grace in your life provides powerful evidence of the gospel's reality. As you grow in knowledge and experience, share with gentleness and respect the hope that is in you, trusting the Holy Spirit to use your witness for His glory."
|
|
}
|
|
]
|
|
},
|
|
"salvation": {
|
|
"title": "Salvation by Grace",
|
|
"description": "Understanding how God saves us through His grace alone",
|
|
"sections": [
|
|
{
|
|
"title": "The Universal Problem of Sin",
|
|
"verses": [
|
|
"Romans 3:10-12",
|
|
"Romans 3:23",
|
|
"Ecclesiastes 7:20",
|
|
"1 John 1:8"
|
|
],
|
|
"content": "Scripture declares the universal reality of human sinfulness\u2014'there is none righteous, no, not one.' All have sinned and come short of the glory of God. This is not a matter of degree but of kind; even one sin separates us from the holy God. Sin is not merely moral failure but rebellion against our Creator, transgression of His law, and falling short of His perfect standard. The carnal mind is enmity against God, not subject to His law, neither indeed can be. Every imagination of man's heart is only evil continually. This diagnosis, though devastating to human pride, is essential for understanding our desperate need for divine intervention."
|
|
},
|
|
{
|
|
"title": "The Just Penalty for Sin",
|
|
"verses": [
|
|
"Romans 6:23",
|
|
"Ezekiel 18:4",
|
|
"Hebrews 9:27",
|
|
"Revelation 20:15"
|
|
],
|
|
"content": "God's holiness demands justice\u2014'the wages of sin is death.' This death encompasses physical mortality, spiritual separation from God, and ultimately eternal punishment in the lake of fire. 'The soul that sinneth, it shall die,' declares the Lord. It is appointed unto men once to die, but after this the judgment. Divine justice cannot simply overlook sin or pretend it never occurred. God's righteousness requires that sin be punished, His law satisfied, and His holiness vindicated. The seriousness of sin is measured not merely by the act itself but by the infinite dignity of the One against whom it is committed. Understanding this penalty magnifies the wonder of God's salvation."
|
|
},
|
|
{
|
|
"title": "The Impossibility of Self-Salvation",
|
|
"verses": [
|
|
"Ephesians 2:8-9",
|
|
"Titus 3:5",
|
|
"Isaiah 64:6",
|
|
"Galatians 2:16"
|
|
],
|
|
"content": "Salvation cannot be earned through human effort, religious observance, or moral reformation. 'Not by works of righteousness which we have done,' Scripture declares emphatically. Our best efforts are as filthy rags in God's sight. No man is justified by the works of the law, for by the deeds of the law no flesh shall be justified. If righteousness came by the law, then Christ died in vain. This truth demolishes human pride and self-righteousness. We cannot save ourselves any more than a drowning man can pull himself up by his own hair. Recognizing our utter inability to save ourselves prepares us to receive God's gracious provision."
|
|
},
|
|
{
|
|
"title": "The Glorious Gift of Grace",
|
|
"verses": [
|
|
"Ephesians 2:4-5",
|
|
"Romans 5:8",
|
|
"Titus 2:11",
|
|
"2 Corinthians 8:9"
|
|
],
|
|
"content": "Grace is God's unmerited favor toward those who deserve His wrath. 'By grace are ye saved through faith, and that not of yourselves: it is the gift of God.' While we were yet sinners, dead in trespasses and sins, God demonstrated His love toward us in that Christ died for us. The grace of God that brings salvation has appeared to all men. This grace is not God's response to human goodness but His sovereign initiative toward the undeserving. For 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. Grace reigns through righteousness unto eternal life."
|
|
},
|
|
{
|
|
"title": "Christ's Substitutionary Atonement",
|
|
"verses": [
|
|
"Isaiah 53:5-6",
|
|
"2 Corinthians 5:21",
|
|
"1 Peter 2:24",
|
|
"1 Peter 3:18"
|
|
],
|
|
"content": "God's salvation centers upon Christ's substitutionary death on the cross. '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.' God made Christ, who knew no sin, to be sin for us, that we might be made the righteousness of God in Him. Our sins were imputed to Christ; His righteousness is imputed to us. He bore our sins in His own body on the tree, suffering the just for the unjust to bring us to God. This exchange\u2014our sin for His righteousness\u2014constitutes the heart of the gospel. Christ satisfied divine justice, propitiated God's wrath, and purchased our redemption."
|
|
},
|
|
{
|
|
"title": "Salvation Through Faith Alone",
|
|
"verses": [
|
|
"Romans 10:9-10",
|
|
"Acts 16:31",
|
|
"John 3:16",
|
|
"Ephesians 2:8"
|
|
],
|
|
"content": "God's requirement for salvation is faith in Jesus Christ. 'Believe on the Lord Jesus Christ, and thou shalt be saved.' If you confess with your mouth the Lord Jesus and believe in your heart that God raised Him from the dead, you shall be saved. Whosoever believes in Him should not perish but have everlasting life. This faith is not mere intellectual assent but wholehearted trust in Christ's person and work. It involves repentance from sin, acknowledgment of Christ as Lord, and reliance upon His finished work rather than your own efforts. Faith is the empty hand that receives God's gift, the channel through which grace flows, the means by which Christ's righteousness becomes ours."
|
|
},
|
|
{
|
|
"title": "The Eternal Security of the Believer",
|
|
"verses": [
|
|
"John 10:28-29",
|
|
"Romans 8:38-39",
|
|
"Philippians 1:6",
|
|
"Jude 1:24"
|
|
],
|
|
"content": "Those whom God saves, He keeps eternally secure. 'I give unto them eternal life, and they shall never perish, neither shall any man pluck them out of my hand.' Nothing can separate us from the love of God which is in Christ Jesus our Lord. He who has begun a good work in you will perform it until the day of Jesus Christ. God is able to keep you from falling and to present you faultless before His presence with exceeding joy. Your salvation rests not upon your faithfulness but upon God's. You are kept by the power of God through faith unto salvation. This assurance flows not from presumption but from confidence in God's promises and Christ's completed work."
|
|
},
|
|
{
|
|
"title": "Grace Produces Godly Living",
|
|
"verses": [
|
|
"Titus 2:11-14",
|
|
"Ephesians 2:10",
|
|
"James 2:17-18",
|
|
"1 John 3:9"
|
|
],
|
|
"content": "Though salvation is by grace alone through faith alone, genuine faith produces transformed living. The grace of God teaches us to deny ungodliness and worldly lusts and to live soberly, righteously, and godly in this present world. We are God's workmanship, created in Christ Jesus unto good works. Faith without works is dead, being alone. True conversion results in a new nature that cannot continue in sin as a practice. This is not legalism but liberty\u2014freedom from sin's dominion to serve righteousness. Good works do not produce salvation but provide evidence of it. Where the Spirit regenerates, holiness inevitably follows, not as condition but as consequence of saving grace."
|
|
}
|
|
]
|
|
},
|
|
"gospel": {
|
|
"title": "The Gospel Message",
|
|
"description": "The good news of Jesus Christ and what it means for us",
|
|
"sections": [
|
|
{
|
|
"title": "The Nature of the Gospel",
|
|
"verses": [
|
|
"1 Corinthians 15:1-4",
|
|
"Romans 1:16",
|
|
"Galatians 1:6-9",
|
|
"2 Timothy 1:10"
|
|
],
|
|
"content": "The gospel is the 'good news' of God's redemptive work through Jesus Christ\u2014the power of God unto salvation to everyone who believes. Paul delivered this gospel as of first importance: that Christ died for our sins according to the Scriptures, was buried, and rose again the third day according to the Scriptures. This message is not man's invention but divine revelation, not one gospel among many but the only gospel. The Apostle pronounced a solemn anathema upon anyone preaching a different gospel, even an angel from heaven. The gospel brings life and immortality to light, revealing God's remedy for humanity's desperate condition and His provision for eternal reconciliation."
|
|
},
|
|
{
|
|
"title": "God's Holiness and Man's Sin",
|
|
"verses": [
|
|
"Isaiah 6:3",
|
|
"Habakkuk 1:13",
|
|
"Romans 3:23",
|
|
"Isaiah 59:2"
|
|
],
|
|
"content": "The gospel begins with the character of God\u2014He is perfectly holy, His throne established in righteousness, His eyes too pure to look upon evil. The seraphim cry continually, 'Holy, holy, holy, is the LORD of hosts.' This holiness forms the immovable standard against which all human conduct is measured. Yet 'all have sinned and come short of the glory of God.' Sin has created a chasm between humanity and the Creator, for our iniquities have separated us from our God. We were born in sin, shaped in iniquity, spiritually dead in trespasses and sins. This diagnosis, though devastating, is essential\u2014only those who know they are sick will seek the Physician, only those who understand their condemnation will flee to the Savior."
|
|
},
|
|
{
|
|
"title": "The Just Penalty and Divine Wrath",
|
|
"verses": [
|
|
"Romans 6:23",
|
|
"Ezekiel 18:4",
|
|
"John 3:36",
|
|
"Revelation 20:15"
|
|
],
|
|
"content": "God's holiness demands that sin be punished\u2014'the wages of sin is death.' This encompasses physical death, spiritual separation from God, and eternal condemnation in the lake of fire. 'The soul that sinneth, it shall die,' declares divine justice. He that believes not the Son shall not see life, but the wrath of God abides on him. This wrath is not capricious anger but righteous indignation against wickedness, the settled opposition of God's holiness to all evil. The gospel reveals both the righteousness of God and the wrath of God\u2014His wrath against sin makes His provision of salvation infinitely precious. Apart from Christ, every soul stands under condemnation, awaiting the judgment of the great white throne."
|
|
},
|
|
{
|
|
"title": "Christ's Perfect Life and Substitutionary Death",
|
|
"verses": [
|
|
"2 Corinthians 5:21",
|
|
"Isaiah 53:5-6",
|
|
"1 Peter 2:24",
|
|
"Hebrews 9:26"
|
|
],
|
|
"content": "The heart of the gospel is Christ's substitutionary atonement. God made Him who knew no sin to be sin for us, that we might become the righteousness of God in Him. Jesus lived a perfectly sinless life, fulfilling all righteousness and obeying the law completely. Yet He was wounded for our transgressions, bruised for our iniquities\u2014the chastisement of our peace was upon Him. All we like sheep have gone astray, and the LORD laid on Him the iniquity of us all. He bore our sins in His own body on the tree, suffering the just for the unjust. At the cross, divine justice and divine mercy met\u2014justice was satisfied as Christ bore the penalty we deserved; mercy triumphed as God provided the sacrifice He required. Christ appeared once for all at the end of the ages to put away sin by the sacrifice of Himself."
|
|
},
|
|
{
|
|
"title": "The Resurrection and Christ's Victory",
|
|
"verses": [
|
|
"1 Corinthians 15:4",
|
|
"Romans 1:4",
|
|
"1 Corinthians 15:17",
|
|
"Colossians 2:15"
|
|
],
|
|
"content": "The resurrection constitutes essential gospel truth\u2014Christ was raised on the third day according to the Scriptures. This resurrection declared Him to be the Son of God with power according to the Spirit of holiness. Without the resurrection, our faith would be vain and we would yet be in our sins. But Christ has indeed been raised from the dead, become the firstfruits of them that slept. Through His resurrection, He disarmed principalities and powers, making a public spectacle of them and triumphing over them in the cross. Death could not hold the Author of Life\u2014He conquered the grave, defeated Satan, and secured eternal redemption. The empty tomb validates Christ's claims, confirms His finished work, and guarantees our future resurrection."
|
|
},
|
|
{
|
|
"title": "Repentance and Faith\u2014The Gospel Response",
|
|
"verses": [
|
|
"Acts 20:21",
|
|
"Mark 1:15",
|
|
"Acts 17:30",
|
|
"Ephesians 2:8-9"
|
|
],
|
|
"content": "The gospel demands a response\u2014repentance toward God and faith toward our Lord Jesus Christ. Jesus proclaimed, 'Repent ye, and believe the gospel.' Repentance is not mere sorrow for sin's consequences but a change of mind resulting in a change of direction\u2014turning from sin to God, from self-righteousness to Christ's righteousness. God now commands all men everywhere to repent. Faith is wholehearted trust in Christ's person and finished work, casting oneself entirely upon Him for salvation. It is by grace through faith that we are saved, not of works lest any man should boast. This faith involves believing that Jesus is the Christ, the Son of God, confessing Him as Lord, and trusting that God raised Him from the dead. Faith and repentance are inseparable\u2014two sides of the same coin of conversion."
|
|
},
|
|
{
|
|
"title": "Justification, Adoption, and New Life",
|
|
"verses": [
|
|
"Romans 5:1",
|
|
"Galatians 3:26",
|
|
"2 Corinthians 5:17",
|
|
"Titus 3:5"
|
|
],
|
|
"content": "The gospel produces immediate and eternal results. Believers are justified by faith\u2014declared righteous before God, their sins forgiven, Christ's righteousness imputed to their account. Being justified by faith, we have peace with God through our Lord Jesus Christ. We are also adopted into God's family\u2014no longer slaves but sons, no longer enemies but beloved children. For ye are all the children of God by faith in Christ Jesus. Furthermore, believers become new creations in Christ\u2014old things pass away, all things become new. This is not mere moral improvement but supernatural regeneration, accomplished by the washing of regeneration and renewing of the Holy Ghost. The gospel transforms rebels into sons, condemned sinners into justified saints, spiritually dead souls into new creatures alive unto God."
|
|
},
|
|
{
|
|
"title": "The Commission to Proclaim the Gospel",
|
|
"verses": [
|
|
"Mark 16:15",
|
|
"Romans 10:14-15",
|
|
"2 Corinthians 5:18-20",
|
|
"Acts 1:8"
|
|
],
|
|
"content": "Having received the gospel, believers bear responsibility to proclaim it. Christ commanded, 'Go ye into all the world, and preach the gospel to every creature.' How shall they believe in Him of whom they have not heard? And how shall they hear without a preacher? Faith comes by hearing, and hearing by the word of God. God has committed to us the ministry of reconciliation, making us ambassadors for Christ, beseeching men to be reconciled to God. We are witnesses unto Him, empowered by the Holy Ghost to testify of His death and resurrection. This commission extends to all believers\u2014we must give an answer to every man that asks us a reason of the hope that is in us with meekness and fear. The gospel is too precious to hoard, too powerful to hide, too urgent to delay proclaiming."
|
|
}
|
|
]
|
|
},
|
|
"fruits-spirit": {
|
|
"title": "Fruits of the Spirit",
|
|
"description": "Developing Christian character through the Holy Spirit",
|
|
"sections": [
|
|
{
|
|
"title": "The Source of All Spiritual Fruit",
|
|
"verses": [
|
|
"John 15:4-5",
|
|
"Galatians 5:22-23",
|
|
"Philippians 1:11",
|
|
"Colossians 1:10"
|
|
],
|
|
"content": "The fruit of the Spirit flows not from human effort but from vital union with Christ. Jesus declared, 'Abide in me, and I in you. As the branch cannot bear fruit of itself, except it abide in the vine; no more can ye, except ye abide in me.' The branch possesses no inherent ability to produce fruit\u2014it must draw life from the vine through continuous connection. Similarly, believers cannot manufacture spiritual graces through self-effort, religious discipline, or moral striving. These fruits are the Spirit's work, produced supernaturally in yielded hearts as believers maintain intimate fellowship with Christ. We are filled with the fruits of righteousness which are by Jesus Christ, unto the glory and praise of God. As we walk in the Spirit, abide in Christ's word, and maintain prayerful dependence, the Spirit reproduces Christ's character in us."
|
|
},
|
|
{
|
|
"title": "Love, Joy, and Peace\u2014Godward Graces",
|
|
"verses": [
|
|
"1 John 4:19",
|
|
"John 15:11",
|
|
"Romans 5:1",
|
|
"Philippians 4:7"
|
|
],
|
|
"content": "The first three fruits primarily concern our relationship with God. Love heads the list because it encompasses all other virtues\u2014we love because He first loved us. This divine love, shed abroad in our hearts by the Holy Ghost, enables us to love God supremely and our neighbor sacrificially. Joy is Christ's own joy abiding in us, making our joy full\u2014a deep gladness rooted not in circumstances but in our union with Christ and confidence in His sovereign purposes. Peace represents both objective reconciliation with God ('being justified by faith, we have peace with God') and subjective tranquility of soul ('the peace of God, which passes all understanding, shall keep your hearts and minds'). These three graces flow from knowing God, resting in His promises, and experiencing His presence. They mark the inner transformation that salvation produces."
|
|
},
|
|
{
|
|
"title": "Longsuffering, Gentleness, and Goodness\u2014Outward Graces",
|
|
"verses": [
|
|
"Colossians 3:12-13",
|
|
"Ephesians 4:32",
|
|
"Romans 12:17-21",
|
|
"Titus 3:4-5"
|
|
],
|
|
"content": "The next three fruits govern our treatment of others, particularly those who try our patience or deserve judgment. Longsuffering is patience with people\u2014forbearing one another and forgiving one another even as God for Christ's sake has forgiven us. It reflects God's own longsuffering toward rebellious humanity, being slow to anger and rich in mercy. Gentleness, or kindness, manifests in tender compassion and beneficial action toward others. Be ye kind one to another, tenderhearted, forgiving\u2014this kindness mirrors the kindness and love of God our Savior toward mankind. Goodness combines moral excellence with benevolent action, not merely abstaining from evil but zealously performing good works. Overcome evil with good, extending blessing even to those who curse or persecute. These graces contradict natural human responses, demonstrating supernatural transformation and reflecting God's character to a watching world."
|
|
},
|
|
{
|
|
"title": "Faith, Meekness, and Temperance\u2014Inward Character",
|
|
"verses": [
|
|
"Galatians 2:20",
|
|
"Numbers 12:3",
|
|
"1 Corinthians 9:25-27",
|
|
"Proverbs 16:32"
|
|
],
|
|
"content": "The final three fruits concern inward spiritual character and self-governance. Faith here denotes faithfulness or trustworthiness\u2014reliability in word and deed, steadfast commitment to duty, and perseverance through trials. 'I live by the faith of the Son of God,' Paul testified, demonstrating consistent fidelity to his calling. Meekness is strength under control, humility combined with courage\u2014not weakness but power submitted to God's authority. Moses was very meek, above all men, yet he confronted Pharaoh and led a nation. Temperance is self-control, mastery over appetites and passions through the Spirit's enabling. Those who strive for mastery are temperate in all things, keeping their bodies in subjection. He that rules his spirit proves mightier than he who takes a city. These graces develop as believers yield to the Spirit's sanctifying work, growing in grace and in the knowledge of Christ."
|
|
},
|
|
{
|
|
"title": "The Unity of the Fruit",
|
|
"verses": [
|
|
"Galatians 5:22",
|
|
"Ephesians 4:13",
|
|
"Colossians 2:19",
|
|
"2 Peter 1:5-8"
|
|
],
|
|
"content": "Scripture speaks of the 'fruit' of the Spirit in the singular, not 'fruits' in the plural. This grammatical detail carries theological significance\u2014these nine qualities constitute one integrated whole, not separate virtues selectively distributed. Like a cluster of grapes or segments of a single orange, these graces develop together organically. Where genuine love flourishes, joy and peace accompany it; where patience grows, kindness and goodness emerge alongside. The Spirit does not produce love without self-control, or gentleness without faithfulness. Peter exhorted believers to add virtue to faith, knowledge to virtue, temperance to knowledge, patience to temperance, godliness to patience\u2014a comprehensive development of Christian character. If these things be in you and abound, they make you neither barren nor unfruitful in the knowledge of our Lord Jesus Christ. The mature believer exhibits all these graces proportionally, growing toward the measure of the stature of the fullness of Christ."
|
|
},
|
|
{
|
|
"title": "Fruit Versus the Works of the Flesh",
|
|
"verses": [
|
|
"Galatians 5:19-21",
|
|
"Romans 8:5-8",
|
|
"Colossians 3:5-10",
|
|
"Ephesians 2:1-5"
|
|
],
|
|
"content": "Paul's listing of the Spirit's fruit immediately follows his enumeration of the works of the flesh\u2014adultery, fornication, uncleanness, lasciviousness, idolatry, witchcraft, hatred, variance, emulations, wrath, strife, seditions, heresies, envyings, murders, drunkenness, revellings, and such like. The contrast proves instructive. Works suggest human labor and effort; fruit implies natural growth from living union. Fleshly works manifest from unregenerate human nature; spiritual fruit grows from the indwelling Holy Spirit. The flesh lusteth against the Spirit, and the Spirit against the flesh\u2014these are contrary one to another. They that are in the flesh cannot please God. Believers must mortify the deeds of the body, put off the old man with his deeds, and put on the new man which is renewed in knowledge after the image of Him that created him. Where the Spirit reigns, the fruit appears; where the flesh dominates, its corrupt works emerge."
|
|
},
|
|
{
|
|
"title": "Cultivating and Growing Spiritual Fruit",
|
|
"verses": [
|
|
"2 Peter 3:18",
|
|
"Hebrews 5:14",
|
|
"Philippians 2:12-13",
|
|
"John 15:2"
|
|
],
|
|
"content": "Though spiritual fruit comes from the Spirit, believers bear responsibility to cultivate conditions favorable for growth. First, maintain intimate communion with Christ through prayer, Scripture meditation, and obedient surrender\u2014abiding in the vine ensures fruitfulness. Second, submit to the Father's pruning\u2014'Every branch that beareth fruit, he purgeth it, that it may bring forth more fruit.' Trials, discipline, and sanctifying affliction remove hindrances to growth. Third, exercise spiritual faculties through practice\u2014'strong meat belongeth to them that are of full age, even those who by reason of use have their senses exercised to discern both good and evil.' Fourth, work out your salvation with fear and trembling, knowing that God works in you both to will and to do of His good pleasure. Fifth, feed upon God's Word\u2014the sincere milk of the Word promotes growth. Finally, cultivate the soil of your heart through confession of sin, resistance of temptation, and deliberate pursuit of holiness."
|
|
},
|
|
{
|
|
"title": "Fruit as Evidence of Genuine Faith",
|
|
"verses": [
|
|
"Matthew 7:16-20",
|
|
"John 15:8",
|
|
"James 2:17-18",
|
|
"1 John 2:3-6"
|
|
],
|
|
"content": "The presence or absence of spiritual fruit provides evidence concerning the reality of one's profession. Jesus warned, 'Ye shall know them by their fruits. Do men gather grapes of thorns, or figs of thistles? Every good tree bringeth forth good fruit; but a corrupt tree bringeth forth evil fruit.' A tree is known by its fruit. Herein is the Father glorified, that ye bear much fruit, so shall ye be His disciples. Fruitfulness demonstrates authentic discipleship. Faith without works is dead, being alone\u2014mere profession without corresponding fruit proves spurious. We know that we know Him if we keep His commandments; he that saith he abides in Him ought himself also so to walk, even as He walked. While works cannot save, genuine faith inevitably produces fruit. Examine yourselves whether ye be in the faith; prove your own selves. The Spirit's fruit, progressively increasing, evidences the Spirit's indwelling and validates the believer's profession."
|
|
}
|
|
]
|
|
},
|
|
"prayer-faith": {
|
|
"title": "Prayer & Faith",
|
|
"description": "Growing in prayer and trust in God",
|
|
"sections": [
|
|
{
|
|
"title": "The Nature and Privilege of Prayer",
|
|
"verses": [
|
|
"Hebrews 4:16",
|
|
"1 John 5:14-15",
|
|
"Philippians 4:6",
|
|
"Jeremiah 33:3"
|
|
],
|
|
"content": "Prayer constitutes the believer's divinely granted access to the throne of grace\u2014an incomprehensible privilege purchased by Christ's blood. Through His mediation, we may come boldly unto the throne of grace, that we may obtain mercy and find grace to help in time of need. This is the confidence we have in approaching God: that if we ask anything according to His will, He hears us. Be careful for nothing, but in everything by prayer and supplication with thanksgiving let your requests be made known unto God. Prayer is not merely a religious exercise but vital communion with the Almighty, the breath of the spiritual life, the Christian's native air. God invites us to call unto Him, promising that He will answer and show us great and mighty things which we know not. Prayer acknowledges our dependence, expresses our faith, and maintains our fellowship with the Father."
|
|
},
|
|
{
|
|
"title": "The Model Prayer\u2014Our Father",
|
|
"verses": [
|
|
"Matthew 6:9-13",
|
|
"Luke 11:2-4",
|
|
"Matthew 6:5-8",
|
|
"John 17:1-26"
|
|
],
|
|
"content": "When the disciples asked Jesus to teach them to pray, He gave them a pattern encompassing all essential elements of prayer. 'Our Father which art in heaven'\u2014prayer begins with acknowledging God's character and our relationship to Him as beloved children addressing their perfect Father. 'Hallowed be thy name'\u2014worship and adoration come first, honoring God's holy nature and attributes. 'Thy kingdom come, thy will be done'\u2014submission to God's sovereignty and desire for His purposes to prevail. 'Give us this day our daily bread'\u2014petition for temporal needs, trusting the Father's provision. 'Forgive us our debts'\u2014confession of sin and request for mercy. 'As we forgive our debtors'\u2014recognition that receiving forgiveness obligates extending forgiveness. 'Lead us not into temptation, but deliver us from evil'\u2014supplication for spiritual protection and deliverance. This prayer teaches structure, priorities, and proper attitudes in approaching God."
|
|
},
|
|
{
|
|
"title": "Elements of Effective Prayer",
|
|
"verses": [
|
|
"Psalm 95:2",
|
|
"1 John 1:9",
|
|
"1 Thessalonians 5:18",
|
|
"1 Timothy 2:1"
|
|
],
|
|
"content": "Complete prayer incorporates multiple elements working together. First, adoration\u2014entering His gates with thanksgiving and His courts with praise, magnifying His attributes and worshiping His person. Second, confession\u2014acknowledging our sins specifically and honestly, for if we confess our sins, He is faithful and just to forgive us our sins and to cleanse us from all unrighteousness. Third, thanksgiving\u2014giving thanks always for all things unto God the Father in the name of our Lord Jesus Christ, expressing gratitude for answered prayer, spiritual blessings, and divine providence. Fourth, supplication\u2014making specific requests for ourselves and interceding for others. I exhort therefore, that supplications, prayers, intercessions, and giving of thanks be made for all men. These elements need not follow rigid order but should characterize our prayer life comprehensively. Prayer that focuses solely on petition without worship, confession, or thanksgiving remains immature and self-centered."
|
|
},
|
|
{
|
|
"title": "Praying in Faith and According to God's Will",
|
|
"verses": [
|
|
"James 1:6-7",
|
|
"Mark 11:24",
|
|
"1 John 5:14",
|
|
"Matthew 21:22"
|
|
],
|
|
"content": "Effective prayer requires faith in God's character, promises, and power. Let him ask in faith, nothing wavering; for he that wavereth is like a wave of the sea driven with the wind and tossed. Let not that man think he shall receive anything of the Lord. Jesus taught, 'What things soever ye desire, when ye pray, believe that ye receive them, and ye shall have them.' Yet faith does not presume upon God or demand He fulfill our wishes\u2014rather, it trusts His wisdom and submits to His sovereign will. This is the confidence we have, that if we ask anything according to His will, He hears us. Sometimes God's will is explicitly revealed in Scripture; other times we must pray in submission, saying with Christ, 'Nevertheless not my will, but thine, be done.' Whatsoever we ask, we receive of Him because we keep His commandments and do those things that are pleasing in His sight. Faith trusts God to answer in His perfect time and way."
|
|
},
|
|
{
|
|
"title": "Persistent and Fervent Prayer",
|
|
"verses": [
|
|
"Luke 18:1-8",
|
|
"1 Thessalonians 5:17",
|
|
"James 5:16",
|
|
"Colossians 4:2"
|
|
],
|
|
"content": "Scripture repeatedly commands persistent, unceasing prayer. Jesus taught a parable to this end, that men ought always to pray and not to faint, illustrating through the persistent widow that continued supplication demonstrates faith and pleases God. Pray without ceasing\u2014maintain an attitude of prayerfulness throughout daily life, with frequent resort to actual prayer. The effectual fervent prayer of a righteous man availeth much. Elijah prayed earnestly that it might not rain, and it rained not for three years and six months; he prayed again, and the heaven gave rain. Continue in prayer, and watch in the same with thanksgiving. Persistence in prayer does not manipulate God but demonstrates earnestness, builds faith, deepens desire, and proves sincerity. God sometimes delays answers to test faith, develop patience, prepare us for the blessing, or for reasons known only to Him. Persistent prayer honors God and positions us to receive His answers in His perfect timing."
|
|
},
|
|
{
|
|
"title": "The Nature of Biblical Faith",
|
|
"verses": [
|
|
"Hebrews 11:1",
|
|
"Hebrews 11:6",
|
|
"Romans 10:17",
|
|
"2 Corinthians 5:7"
|
|
],
|
|
"content": "Faith is the substance of things hoped for, the evidence of things not seen\u2014it gives present reality to future promises and provides conviction concerning invisible spiritual truths. Without faith it is impossible to please God, for he that cometh to God must believe that He is and that He is a rewarder of them that diligently seek Him. Biblical faith is not blind optimism, wishful thinking, or irrational credulity. Rather, it is confident trust in God's revealed truth, resting upon His character and promises. Faith cometh by hearing, and hearing by the word of God\u2014it is grounded in divine revelation, not human speculation. We walk by faith, not by sight, trusting God's word above our perceptions and feelings. Faith believes God's testimony concerning His Son, trusts His promises despite contrary circumstances, and obeys His commands even when the outcome remains uncertain. It is both a gift from God and a responsibility to exercise and strengthen."
|
|
},
|
|
{
|
|
"title": "Faith Demonstrated Through Obedience",
|
|
"verses": [
|
|
"James 2:17-26",
|
|
"Hebrews 11:7-8",
|
|
"Genesis 22:1-18",
|
|
"1 John 5:3-4"
|
|
],
|
|
"content": "Genuine faith invariably produces corresponding action\u2014faith without works is dead, being alone. James declared, 'Show me thy faith without thy works, and I will show thee my faith by my works.' Abraham believed God, and it was imputed unto him for righteousness when he offered Isaac, his obedience demonstrating his faith. Noah, being warned of God of things not seen as yet, moved with fear, prepared an ark to the saving of his house, by which he condemned the world and became heir of the righteousness which is by faith. This is the love of God, that we keep His commandments, and His commandments are not grievous. For whatsoever is born of God overcometh the world, and this is the victory that overcometh the world, even our faith. Faith trusts God's promises sufficiently to act upon them, obeys His commands despite difficulty, and perseveres through trials. Works do not produce faith but provide evidence of its genuineness\u2014true faith works by love and manifests through obedient surrender."
|
|
},
|
|
{
|
|
"title": "Growing and Strengthening Faith",
|
|
"verses": [
|
|
"Romans 10:17",
|
|
"Jude 1:20",
|
|
"2 Thessalonians 1:3",
|
|
"Luke 17:5"
|
|
],
|
|
"content": "Faith is not static but grows through spiritual nourishment and exercise. Faith cometh by hearing, and hearing by the word of God\u2014regular, attentive study of Scripture strengthens faith by revealing God's character, promises, and faithfulness. Building up yourselves on your most holy faith, praying in the Holy Ghost\u2014prayer, worship, and Spirit-dependence develop faith. The Thessalonians' faith grew exceedingly through persecution and tribulation, proving that trials test and strengthen genuine faith. The disciples prayed, 'Lord, increase our faith,' recognizing their need for greater trust. Faith grows through meditating on God's past faithfulness, rehearsing His mighty works, and recounting answered prayers. It increases through fellowship with mature believers whose faith inspires imitation. It strengthens through practical exercise\u2014stepping out in obedience despite fear, trusting God in difficult circumstances, and proving His faithfulness experientially. Like a muscle that develops through use, faith grows through being exercised in dependence upon God."
|
|
}
|
|
]
|
|
},
|
|
"christian-living": {
|
|
"title": "Christian Living",
|
|
"description": "Walking as followers of Christ in daily life",
|
|
"sections": [
|
|
{
|
|
"title": "Living Sacrifice and Total Consecration",
|
|
"verses": [
|
|
"Romans 12:1-2",
|
|
"Galatians 2:20",
|
|
"1 Corinthians 6:19-20",
|
|
"2 Corinthians 5:15"
|
|
],
|
|
"content": "Paul beseeches believers by the mercies of God to present their bodies a living sacrifice, holy, acceptable unto God, which is their reasonable service. Unlike the dead sacrifices of the Old Testament, believers offer themselves as living sacrifices\u2014wholly consecrated yet daily functioning in service to God. This consecration is reasonable because of God's mercies\u2014the immeasurable grace bestowed through Christ's redemption. Be not conformed to this world but be transformed by the renewing of your mind, that ye may prove what is that good and acceptable and perfect will of God. The crucified life follows Paul's testimony: 'I am crucified with Christ: nevertheless I live; yet not I, but Christ liveth in me.' Believers are not their own, for they are bought with a price\u2014the precious blood of Christ. Therefore glorify God in your body and in your spirit, which are God's. Those who live should no longer live unto themselves but unto Him who died for them and rose again."
|
|
},
|
|
{
|
|
"title": "Separation from Worldly Conformity",
|
|
"verses": [
|
|
"2 Corinthians 6:14-18",
|
|
"1 John 2:15-17",
|
|
"James 4:4",
|
|
"Romans 12:2"
|
|
],
|
|
"content": "Scripture commands clear separation from worldly values, priorities, and practices. Be ye not unequally yoked together with unbelievers, for what fellowship hath righteousness with unrighteousness? And what communion hath light with darkness? Wherefore come out from among them, and be ye separate, saith the Lord. Love not the world, neither the things that are in the world. If any man love the world, the love of the Father is not in him. For all that is in the world\u2014the lust of the flesh, the lust of the eyes, and the pride of life\u2014is not of the Father but is of the world. Friendship with the world is enmity with God; whosoever therefore will be a friend of the world is the enemy of God. This separation is not physical isolation but spiritual distinction\u2014maintaining different values, pursuits, and allegiances than the unregenerate world while living as salt and light within it."
|
|
},
|
|
{
|
|
"title": "Walking in the Spirit Versus the Flesh",
|
|
"verses": [
|
|
"Galatians 5:16-18",
|
|
"Romans 8:5-14",
|
|
"Ephesians 5:15-18",
|
|
"Colossians 3:1-3"
|
|
],
|
|
"content": "The Christian life presents a continual choice between walking in the Spirit and fulfilling the lusts of the flesh. Walk in the Spirit, and ye shall not fulfil the lust of the flesh. For the flesh lusteth against the Spirit, and the Spirit against the flesh, and these are contrary the one to the other. They that are after the flesh do mind the things of the flesh, but they that are after the Spirit the things of the Spirit. For to be carnally minded is death, but to be spiritually minded is life and peace. As many as are led by the Spirit of God, they are the sons of God. Walk circumspectly, not as fools but as wise, redeeming the time because the days are evil. Be not drunk with wine, wherein is excess, but be filled with the Spirit. Set your affection on things above, not on things on the earth, for ye are dead and your life is hid with Christ in God. Daily yielding to the Spirit's control produces godly living."
|
|
},
|
|
{
|
|
"title": "Shining as Lights in a Dark World",
|
|
"verses": [
|
|
"Matthew 5:14-16",
|
|
"Philippians 2:14-16",
|
|
"Ephesians 5:8-11",
|
|
"1 Peter 2:9-12"
|
|
],
|
|
"content": "Jesus declared, 'Ye are the light of the world. A city that is set on an hill cannot be hid.' Let your light so shine before men that they may see your good works and glorify your Father which is in heaven. Believers are to shine as lights in the world, holding forth the word of life, doing all things without murmurings and disputings, that they may be blameless and harmless, the sons of God without rebuke in the midst of a crooked and perverse nation. Once ye were darkness, but now are ye light in the Lord; walk as children of light, having no fellowship with the unfruitful works of darkness but rather reproving them. 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. Having your conversation honest among the Gentiles, that whereas they speak against you as evildoers, they may by your good works glorify God."
|
|
},
|
|
{
|
|
"title": "The Pursuit of Holiness",
|
|
"verses": [
|
|
"1 Peter 1:15-16",
|
|
"Hebrews 12:14",
|
|
"2 Corinthians 7:1",
|
|
"1 Thessalonians 4:3-7"
|
|
],
|
|
"content": "God's command to His people is unambiguous: 'Be ye holy; for I am holy.' Follow peace with all men and holiness, without which no man shall see the Lord. Holiness is not optional for believers but essential evidence of genuine conversion. Having these promises, dearly beloved, let us cleanse ourselves from all filthiness of the flesh and spirit, perfecting holiness in the fear of God. This is the will of God, even your sanctification, that ye should abstain from fornication, that every one of you should know how to possess his vessel in sanctification and honour. For God hath not called us unto uncleanness but unto holiness. This holiness is both positional\u2014set apart unto God at conversion\u2014and progressive\u2014growing in practical righteousness throughout life. It requires active mortification of sin, deliberate pursuit of righteousness, and continual dependence upon the Spirit's sanctifying work."
|
|
},
|
|
{
|
|
"title": "Faithful Stewardship and Service",
|
|
"verses": [
|
|
"1 Corinthians 4:1-2",
|
|
"1 Peter 4:10-11",
|
|
"Matthew 25:14-30",
|
|
"Colossians 3:23-24"
|
|
],
|
|
"content": "Let a man so account of us as ministers of Christ and stewards of the mysteries of God. Moreover it is required in stewards that a man be found faithful. Believers are stewards entrusted with time, talents, treasure, and the gospel message itself. Every good gift received demands faithful stewardship. As every man hath received the gift, even so minister the same one to another as good stewards of the manifold grace of God. The parable of the talents warns against burying our gifts in the earth through laziness or fear. Whatsoever ye do, do it heartily as to the Lord and not unto men, knowing that of the Lord ye shall receive the reward of the inheritance, for ye serve the Lord Christ. Faithful service flows from gratitude for salvation, recognition of Christ's lordship, and desire for eternal reward. Every believer possesses gifts and opportunities for service\u2014faithful stewardship employs them for God's glory and others' benefit."
|
|
},
|
|
{
|
|
"title": "Love in Action and Godly Relationships",
|
|
"verses": [
|
|
"John 13:34-35",
|
|
"1 Corinthians 13:1-8",
|
|
"Ephesians 4:1-3",
|
|
"Romans 12:9-21"
|
|
],
|
|
"content": "Jesus gave a new commandment: 'That ye love one another; as I have loved you, that ye also love one another. By this shall all men know that ye are my disciples, if ye have love one to another.' Christian living finds its highest expression in genuine love. Though I speak with tongues of men and of angels and have not charity, I am become as sounding brass or a tinkling cymbal. Walk worthy of the vocation wherewith ye are called, with all lowliness and meekness, with longsuffering, forbearing one another in love, endeavouring to keep the unity of the Spirit in the bond of peace. Let love be without dissimulation. Abhor that which is evil; cleave to that which is good. Be kindly affectioned one to another with brotherly love, in honour preferring one another. Rejoice with them that do rejoice, and weep with them that weep. Recompense to no man evil for evil. If thine enemy hunger, feed him. Be not overcome of evil, but overcome evil with good."
|
|
},
|
|
{
|
|
"title": "Perseverance in Godly Living",
|
|
"verses": [
|
|
"Galatians 6:9",
|
|
"Hebrews 12:1-2",
|
|
"1 Corinthians 15:58",
|
|
"2 Peter 1:5-11"
|
|
],
|
|
"content": "Let us not be weary in well doing, for in due season we shall reap if we faint not. Christian living requires sustained endurance, not sporadic enthusiasm. 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. Be ye stedfast, unmoveable, always abounding in the work of the Lord, forasmuch as ye know that your labour is not in vain in the Lord. Give diligence to make your calling and election sure, adding to your faith virtue, knowledge, temperance, patience, godliness, brotherly kindness, and charity. If these things be in you and abound, they make you that ye shall neither be barren nor unfruitful. For if ye do these things, ye shall never fall, but an entrance shall be ministered unto you abundantly into the everlasting kingdom of our Lord and Saviour Jesus Christ."
|
|
}
|
|
]
|
|
},
|
|
"gods-love": {
|
|
"title": "God's Love",
|
|
"description": "Understanding the depth and breadth of God's love for us",
|
|
"sections": [
|
|
{
|
|
"title": "God's Essential Nature is Love",
|
|
"verses": [
|
|
"1 John 4:8",
|
|
"1 John 4:16",
|
|
"Exodus 34:6-7",
|
|
"Psalm 103:8"
|
|
],
|
|
"content": "Scripture makes the astounding declaration that 'God is love'\u2014not merely that He loves, but that love constitutes His essential nature and character. He that loveth not knoweth not God, for God is love. We have known and believed the love that God hath to us. God is love, and he that dwelleth in love dwelleth in God, and God in him. This love is not sentiment or emotion but the very essence of the divine being. When God revealed Himself to Moses, He proclaimed His character: 'The LORD, The LORD God, merciful and gracious, longsuffering, and abundant in goodness and truth, keeping mercy for thousands, forgiving iniquity and transgression and sin.' The LORD is merciful and gracious, slow to anger, and plenteous in mercy. Every attribute of God\u2014His sovereignty, holiness, justice, and power\u2014operates in perfect harmony with His love. Understanding that God is love transforms our view of creation, providence, redemption, and eternity."
|
|
},
|
|
{
|
|
"title": "Love Demonstrated in Creation and Providence",
|
|
"verses": [
|
|
"Psalm 136:1-9",
|
|
"Acts 14:16-17",
|
|
"Matthew 5:45",
|
|
"Psalm 145:9"
|
|
],
|
|
"content": "God's love appears in His creative work and ongoing providence. The psalmist recounts God's mighty acts, repeatedly declaring, 'for his mercy endureth for ever.' He made the heavens, the earth, the sun, moon, and stars in wisdom\u2014His love demonstrated in creation's order and beauty. Though past generations walked in their own ways, yet He left not Himself without witness, in that He did good and gave us rain from heaven and fruitful seasons, filling our hearts with food and gladness. God makes His sun rise on the evil and on the good, and sends rain on the just and on the unjust\u2014common grace flowing from divine benevolence. The LORD is good to all, and His tender mercies are over all His works. The very existence and sustenance of creation testifies to God's loving character, providing abundant evidence of His goodness even to those who reject Him."
|
|
},
|
|
{
|
|
"title": "Covenant Love and Faithfulness",
|
|
"verses": [
|
|
"Jeremiah 31:3",
|
|
"Deuteronomy 7:7-9",
|
|
"Hosea 11:1-4",
|
|
"Lamentations 3:22-23"
|
|
],
|
|
"content": "God's covenant love toward His people demonstrates loyal, unchanging commitment. The LORD declared, 'I have loved thee with an everlasting love; therefore with lovingkindness have I drawn thee.' This love is not based on Israel's merit\u2014'The LORD did not set His love upon you nor choose you because ye were more in number than any people, for ye were the fewest of all people.' Rather, it flows from His sovereign will and covenant faithfulness. When Israel was a child, then I loved him, and called my son out of Egypt. I drew them with cords of a man, with bands of love. God's love persists despite human unfaithfulness. 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. This covenant love, the Hebrew hesed, combines loyal affection with committed action\u2014God binds Himself to His people and never forsakes them."
|
|
},
|
|
{
|
|
"title": "Love's Supreme Demonstration at Calvary",
|
|
"verses": [
|
|
"John 3:16",
|
|
"Romans 5:8",
|
|
"1 John 4:9-10",
|
|
"Ephesians 2:4-5"
|
|
],
|
|
"content": "The cross of Christ stands as history's supreme revelation of divine love. 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. God commendeth His love toward us in that while we were yet sinners, Christ died for us. In this was manifested the love of God toward us, because that God sent His only begotten Son into the world that we might live through Him. Herein is love, not that we loved God but that He loved us and sent His Son to be the propitiation for our sins. God, who is rich in mercy, for His great love wherewith He loved us, even when we were dead in sins, hath quickened us together with Christ. This love is not response to human worthiness but sovereign initiative toward the undeserving. The infinite cost\u2014God's beloved Son suffering and dying\u2014measures love's magnitude. Greater love hath no man than this, that a man lay down his life for his friends."
|
|
},
|
|
{
|
|
"title": "The Unfailing and Inseparable Nature of God's Love",
|
|
"verses": [
|
|
"Romans 8:38-39",
|
|
"Psalm 103:17",
|
|
"Isaiah 54:10",
|
|
"John 13:1"
|
|
],
|
|
"content": "God's love toward His children is absolutely secure and unbreakable. Paul declared with confidence: '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.' The mercy of the LORD is from everlasting to everlasting upon them that fear Him, and His righteousness unto children's children. Though the mountains shall depart and the hills be removed, yet My kindness shall not depart from thee, neither shall the covenant of My peace be removed, saith the LORD that hath mercy on thee. Having loved His own which were in the world, He loved them unto the end. This love is not fickle or conditional but eternal and immutable, grounded in God's unchanging character rather than human performance."
|
|
},
|
|
{
|
|
"title": "Comprehending and Experiencing God's Love",
|
|
"verses": [
|
|
"Ephesians 3:17-19",
|
|
"Romans 5:5",
|
|
"1 John 3:1",
|
|
"Psalm 107:43"
|
|
],
|
|
"content": "While God's love surpasses human comprehension, believers are called to know it experientially. Paul prayed that believers, being rooted and grounded in love, might be able to comprehend with all saints what is the breadth and length and depth and height, and to know the love of Christ which passeth knowledge, that ye might be filled with all the fulness of God. Though it surpasses knowledge, it may be known through experience. The love of God is shed abroad in our hearts by the Holy Ghost which is given unto us\u2014the Spirit makes divine love a living reality in believers' experience. Behold what manner of love the Father hath bestowed upon us, that we should be called the sons of God! The wonder of God's adopting love should move us to amazement and worship. Whoso is wise and will observe these things, even they shall understand the lovingkindness of the LORD. Meditation on Scripture, Spirit-illumination, and practical experience of God's faithfulness deepen our comprehension of His love."
|
|
},
|
|
{
|
|
"title": "The Believer's Response to God's Love",
|
|
"verses": [
|
|
"1 John 4:19",
|
|
"Deuteronomy 6:5",
|
|
"John 14:15",
|
|
"2 Corinthians 5:14-15"
|
|
],
|
|
"content": "God's love demands and enables our responsive love. We love Him because He first loved us. Thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might. This love is not mere emotion but wholehearted devotion expressed through obedient surrender. If ye love Me, keep My commandments. For this is the love of God, that we keep His commandments, and His commandments are not grievous. The love of Christ constraineth us, having concluded that if one died for all, then were all dead, and that He died for all, that they which live should not henceforth live unto themselves but unto Him which died for them and rose again. Proper response to divine love includes grateful worship, trusting obedience, sacrificial service, and passionate witness. Those who truly comprehend God's love cannot remain passive or indifferent but are compelled to reciprocate through devoted living."
|
|
},
|
|
{
|
|
"title": "Loving Others as God Has Loved Us",
|
|
"verses": [
|
|
"John 13:34",
|
|
"1 John 4:11",
|
|
"Ephesians 5:1-2",
|
|
"Matthew 5:43-48"
|
|
],
|
|
"content": "Having received God's love, believers must extend it to others. A new commandment I give unto you, that ye love one another; as I have loved you, that ye also love one another. Beloved, if God so loved us, we ought also to love one another. Be ye therefore followers of God as dear children, and walk in love, as Christ also hath loved us and hath given Himself for us an offering and a sacrifice to God. This love extends even to enemies: 'Love your enemies, bless them that curse you, do good to them that hate you, and pray for them which despitefully use you and persecute you, that ye may be the children of your Father which is in heaven.' God's love, received and experienced, must flow through believers to others. By this shall all men know that ye are My disciples, if ye have love one to another. Our love for others both demonstrates God's love and reflects His character to a watching world, serving as powerful evidence of genuine conversion and the gospel's transforming power."
|
|
}
|
|
]
|
|
},
|
|
"hope-comfort": {
|
|
"title": "Hope & Comfort",
|
|
"description": "Finding hope and comfort in God during difficult times",
|
|
"sections": [
|
|
{
|
|
"title": "The God of All Comfort",
|
|
"verses": [
|
|
"2 Corinthians 1:3-4",
|
|
"Psalm 86:17",
|
|
"Isaiah 51:12",
|
|
"Psalm 23:4"
|
|
],
|
|
"content": "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. God's very title identifies Him as the source of all true consolation\u2014not merely a comforter among many but the God of all comfort. Show me a token for good, that they which hate me may see it and be ashamed, because Thou, LORD, hast holpen me and comforted me. I, even I, am He that comforteth you. Yea, though I walk through the valley of the shadow of death, I will fear no evil, for Thou art with me; Thy rod and Thy staff they comfort me. This comfort is not superficial cheer or denial of difficulty but divine consolation that sustains through the darkest trials, rooted in God's character, presence, and promises."
|
|
},
|
|
{
|
|
"title": "Comfort and Purpose in Affliction",
|
|
"verses": [
|
|
"Romans 8:28",
|
|
"2 Corinthians 4:17",
|
|
"James 1:2-4",
|
|
"1 Peter 5:10"
|
|
],
|
|
"content": "Scripture reveals that God brings purpose from believers' afflictions. We know that all things work together for good to them that love God, to them who are the called according to His purpose. Our light affliction, which is but for a moment, worketh for us a far more exceeding and eternal weight of glory. 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. The God of all grace, who hath called us unto His eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you. Afflictions are not random cruelties but divinely ordained means of spiritual growth, purification, and preparation for glory. This perspective transforms suffering from meaningless tragedy into purposeful refinement."
|
|
},
|
|
{
|
|
"title": "God Our Refuge and Present Help",
|
|
"verses": [
|
|
"Psalm 46:1-3",
|
|
"Psalm 91:1-2",
|
|
"Isaiah 41:10",
|
|
"Nahum 1:7"
|
|
],
|
|
"content": "God is our refuge and strength, a very present help in trouble. Therefore will not we fear, though the earth be removed and though the mountains be carried into the midst of the sea. He that dwelleth in the secret place of the most High shall abide under the shadow of the Almighty. I will say of the LORD, He is my refuge and my fortress, my God; in Him will I trust. Fear thou not, for I am with thee; be not dismayed, for I am thy God. I will strengthen thee; yea, I will help thee; yea, I will uphold thee with the right hand of My righteousness. The LORD is good, a strong hold in the day of trouble, and He knoweth them that trust in Him. God's help is not distant or theoretical but immediate and practical\u2014a very present help. His presence provides shelter in the storm, strength in weakness, and stability when all else shakes."
|
|
},
|
|
{
|
|
"title": "Hope Anchored in Christ's Resurrection",
|
|
"verses": [
|
|
"1 Peter 1:3",
|
|
"1 Corinthians 15:19-20",
|
|
"Romans 6:9",
|
|
"Colossians 1:27"
|
|
],
|
|
"content": "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. Christian hope rests upon Christ's resurrection\u2014if in this life only we have hope in Christ, we are of all men most miserable. But now is Christ risen from the dead and become the firstfruits of them that slept. Knowing that Christ being raised from the dead dieth no more, death hath no more dominion over Him. This hope is Christ in you, the hope of glory. Unlike worldly optimism that may prove vain, Christian hope is confident expectation grounded in historical fact and divine promise. Christ's resurrection guarantees our resurrection, validates His claims, confirms His victory, and assures believers of future glory. This hope sustains through present suffering and anchors the soul in stormy seas."
|
|
},
|
|
{
|
|
"title": "The Certainty of Future Glory",
|
|
"verses": [
|
|
"Romans 8:18",
|
|
"2 Corinthians 4:17-18",
|
|
"Revelation 21:4",
|
|
"1 John 3:2"
|
|
],
|
|
"content": "I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. Our light affliction, which is but for a moment, worketh for us a far more exceeding and eternal weight of glory while we look not at the things which are seen but at the things which are not seen, for the things which are seen are temporal but the things which are not seen are eternal. 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. Beloved, now are we the sons of God, and it doth not yet appear what we shall be, but we know that when He shall appear, we shall be like Him, for we shall see Him as He is. This future hope\u2014glorification, perfection, eternal joy\u2014provides perspective that transforms present suffering from unbearable weight to light affliction."
|
|
},
|
|
{
|
|
"title": "Comfort Through God's Word",
|
|
"verses": [
|
|
"Romans 15:4",
|
|
"Psalm 119:50",
|
|
"Psalm 119:76",
|
|
"Jeremiah 15:16"
|
|
],
|
|
"content": "Whatsoever things were written aforetime were written for our learning, that we through patience and comfort of the scriptures might have hope. The Bible provides practical, powerful comfort in affliction. This is my comfort in my affliction, for Thy word hath quickened me. Let, I pray Thee, Thy merciful kindness be for my comfort according to Thy word unto Thy servant. Thy words were found, and I did eat them, and Thy word was unto me the joy and rejoicing of mine heart. Scripture comforts by revealing God's character, recounting His faithfulness, declaring His promises, and providing examples of others who endured trials victoriously. The Holy Spirit applies biblical truth to believers' hearts, making ancient words living comfort for present sorrows. Regular meditation upon God's Word supplies strength for today and hope for tomorrow, transforming perspective and renewing the mind."
|
|
},
|
|
{
|
|
"title": "The Ministry of Comforting Others",
|
|
"verses": [
|
|
"2 Corinthians 1:4",
|
|
"1 Thessalonians 5:11",
|
|
"Isaiah 40:1",
|
|
"Hebrews 10:24-25"
|
|
],
|
|
"content": "God comforts 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. Divine comfort is not given solely for personal benefit but equips believers to minister to others. Wherefore comfort yourselves together and edify one another, even as also ye do. Comfort ye, comfort ye My people, saith your God. Let us consider one another to provoke unto love and to good works, not forsaking the assembling of ourselves together but exhorting one another, and so much the more as ye see the day approaching. Those who have received comfort in their afflictions possess unique ability to console others facing similar trials. This ministry involves presence, empathy, practical help, biblical truth, and pointing sufferers to God's sufficient grace. Believers become conduits of divine comfort, channels through which God's consolation flows to hurting souls."
|
|
},
|
|
{
|
|
"title": "The Blessed Hope of Christ's Return",
|
|
"verses": [
|
|
"Titus 2:13",
|
|
"1 Thessalonians 4:13-18",
|
|
"Philippians 3:20-21",
|
|
"Revelation 22:20"
|
|
],
|
|
"content": "Looking for that blessed hope and the glorious appearing of the great God and our Saviour Jesus Christ\u2014this anticipated return of Christ provides ultimate comfort and hope. I would not have you 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. 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. Wherefore comfort one another with these words. Our conversation is in heaven, from whence also we look for the Saviour, the Lord Jesus Christ, who shall change our vile body that it may be fashioned like unto His glorious body. He which testifieth these things saith, Surely I come quickly. Amen. Even so, come, Lord Jesus."
|
|
}
|
|
]
|
|
},
|
|
"wisdom-guidance": {
|
|
"title": "Wisdom & Guidance",
|
|
"description": "Seeking God's wisdom and guidance for life decisions",
|
|
"sections": [
|
|
{
|
|
"title": "The Fear of the Lord\u2014Beginning of Wisdom",
|
|
"verses": [
|
|
"Proverbs 9:10",
|
|
"Proverbs 1:7",
|
|
"Psalm 111:10",
|
|
"Job 28:28"
|
|
],
|
|
"content": "The fear of the LORD is the beginning of wisdom, and the knowledge of the holy is understanding. The fear of the LORD is the beginning of knowledge, but fools despise wisdom and instruction. The fear of the LORD is the beginning of wisdom; a good understanding have all they that do His commandments. Behold, the fear of the Lord, that is wisdom, and to depart from evil is understanding. This fear is not terror or dread but reverential awe, profound respect, and loving submission to God's authority. It recognizes God's sovereignty, acknowledges His holiness, trembles at His word, and desires to please Him above all else. True wisdom begins here because until one rightly relates to God\u2014the source of all truth\u2014no genuine wisdom is possible. Worldly knowledge divorced from godly fear produces clever fools. Divine wisdom begins with knowing and honoring the Lord."
|
|
},
|
|
{
|
|
"title": "Asking God for Wisdom",
|
|
"verses": [
|
|
"James 1:5-6",
|
|
"Proverbs 2:3-6",
|
|
"1 Kings 3:9-12",
|
|
"Daniel 2:20-21"
|
|
],
|
|
"content": "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. But let him ask in faith, nothing wavering. Yea, if thou criest after knowledge and liftest up thy voice for understanding, if thou seekest her as silver and searchest for her as for hid treasures, then shalt thou understand the fear of the LORD and find the knowledge of God. For the LORD giveth wisdom; out of His mouth cometh knowledge and understanding. When Solomon asked for an understanding heart to judge God's people and discern between good and bad, God granted his request and gave him wisdom exceeding all others. Daniel blessed God, saying, Wisdom and might are His; He giveth wisdom unto the wise and knowledge to them that know understanding. God delights to grant wisdom to those who humbly seek it, ask in faith, and intend to use it for His glory and others' good."
|
|
},
|
|
{
|
|
"title": "Trust in the Lord, Not Human Understanding",
|
|
"verses": [
|
|
"Proverbs 3:5-6",
|
|
"Proverbs 28:26",
|
|
"Jeremiah 10:23",
|
|
"Isaiah 55:8-9"
|
|
],
|
|
"content": "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. He that trusteth in his own heart is a fool, but whoso walketh wisely, he shall be delivered. O LORD, I know that the way of man is not in himself; it is not in man that walketh to direct his steps. For My thoughts are not your thoughts, neither are your ways My ways, saith the LORD. For as the heavens are higher than the earth, so are My ways higher than your ways and My thoughts than your thoughts. Human wisdom, corrupted by sin and limited by finite understanding, proves utterly insufficient for life's navigation. God's wisdom infinitely transcends human reasoning. Therefore believers must trust God's revealed truth above their own perceptions, submit to His guidance rather than their own plans, and acknowledge Him in all decisions. Such trust brings divine direction and protection from the disasters that follow self-directed living."
|
|
},
|
|
{
|
|
"title": "Scripture as the Source of Wisdom",
|
|
"verses": [
|
|
"Psalm 119:105",
|
|
"2 Timothy 3:15-17",
|
|
"Psalm 19:7-8",
|
|
"Proverbs 30:5"
|
|
],
|
|
"content": "Thy word is a lamp unto my feet and a light unto my path. The holy scriptures are able to make thee wise unto salvation through faith which is in Christ Jesus. 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. The law of the LORD is perfect, converting the soul; the testimony of the LORD is sure, making wise the simple. The statutes of the LORD are right, rejoicing the heart; the commandment of the LORD is pure, enlightening the eyes. Every word of God is pure; He is a shield unto them that put their trust in Him. God's written Word provides comprehensive wisdom for salvation, doctrine, conduct, and every good work. It illuminates the path, reveals God's will, exposes error, corrects thinking, and instructs in righteousness. Believers who saturate their minds with Scripture gain divine wisdom for daily decisions."
|
|
},
|
|
{
|
|
"title": "Discerning God's Will and Guidance",
|
|
"verses": [
|
|
"Romans 12:2",
|
|
"Ephesians 5:15-17",
|
|
"Colossians 1:9",
|
|
"Philippians 1:9-10"
|
|
],
|
|
"content": "Be not conformed to this world but be ye transformed by the renewing of your mind, that ye may prove what is that good and acceptable and perfect will of God. Walk circumspectly, not as fools but as wise, redeeming the time because the days are evil. Wherefore be ye not unwise but understanding what the will of the Lord is. We pray that ye might be filled with the knowledge of His will in all wisdom and spiritual understanding. That your love may abound yet more and more in knowledge and in all judgment, that ye may approve things that are excellent, that ye may be sincere and without offence till the day of Christ. Discerning God's will requires renewed minds, spiritual understanding, and sanctified judgment. God's general will is revealed in Scripture\u2014holiness, love, obedience, witness. His specific guidance comes through prayer, providential circumstances, godly counsel, inner peace, and doors opened or closed. Believers prove God's will through obedient surrender, not demanding signs but trusting His faithful leading."
|
|
},
|
|
{
|
|
"title": "Wisdom Through Godly Counsel",
|
|
"verses": [
|
|
"Proverbs 11:14",
|
|
"Proverbs 15:22",
|
|
"Proverbs 12:15",
|
|
"Proverbs 19:20"
|
|
],
|
|
"content": "Where no counsel is, the people fall, but in the multitude of counsellors there is safety. Without counsel purposes are disappointed, but in the multitude of counsellors they are established. The way of a fool is right in his own eyes, but he that hearkeneth unto counsel is wise. Hear counsel and receive instruction, that thou mayest be wise in thy latter end. God ordinarily guides through the wisdom of mature, godly believers who provide biblical perspective, warn against folly, and help discern His will. Seeking counsel is not weakness but wisdom\u2014the humble recognition that we need others' insight and experience. However, not all counsel proves sound; counselors must be godly, biblically grounded, and Spirit-led. Blessed is the man that walketh not in the counsel of the ungodly. Multiple godly counselors provide safety, confirming or correcting our impressions and helping us avoid self-deception and rash decisions."
|
|
},
|
|
{
|
|
"title": "Wisdom in Daily Decision Making",
|
|
"verses": [
|
|
"Colossians 4:5",
|
|
"Ephesians 5:15-16",
|
|
"Matthew 10:16",
|
|
"1 Corinthians 14:20"
|
|
],
|
|
"content": "Walk in wisdom toward them that are without, redeeming the time. See then that ye walk circumspectly, not as fools but as wise, redeeming the time because the days are evil. Behold, I send you forth as sheep in the midst of wolves; be ye therefore wise as serpents and harmless as doves. Brethren, be not children in understanding; howbeit in malice be ye children, but in understanding be men. Practical wisdom governs daily conduct\u2014how believers speak, work, manage resources, relate to unbelievers, and navigate a fallen world. This wisdom is neither na\u00efve innocence nor cynical worldliness but Spirit-guided prudence combining moral purity with shrewd discernment. It maximizes opportunities, avoids unnecessary offense, anticipates consequences, and acts with mature understanding. Such wisdom demonstrates Christianity's practical superiority, adorns the gospel, and protects from Satan's devices. It involves thinking before speaking, planning before acting, and evaluating decisions in light of eternity."
|
|
},
|
|
{
|
|
"title": "Growing in Wisdom Throughout Life",
|
|
"verses": [
|
|
"Proverbs 4:7",
|
|
"Colossians 1:10",
|
|
"Hosea 14:9",
|
|
"Psalm 90:12"
|
|
],
|
|
"content": "Wisdom is the principal thing; therefore get wisdom, and with all thy getting get understanding. Walking worthy of the Lord unto all pleasing, being fruitful in every good work and increasing in the knowledge of God. Who is wise, and he shall understand these things? Prudent, and he shall know them? For the ways of the LORD are right, and the just shall walk in them, but the transgressors shall fall therein. So teach us to number our days, that we may apply our hearts unto wisdom. Wisdom must be pursued deliberately throughout life\u2014it is the principal thing, the supreme acquisition. Growth in wisdom comes through diligent study of God's Word, prayerful dependence on the Spirit, meditation on God's ways, learning from godly examples, and practical application of truth. Experience teaches wisdom to those who observe God's working and learn from past mistakes. The wise person never stops growing, recognizing that until we see Christ face to face, we know in part. Numbering our days\u2014recognizing life's brevity\u2014motivates us to pursue wisdom urgently rather than squandering precious time in folly."
|
|
}
|
|
]
|
|
},
|
|
"trinity": {
|
|
"title": "The Trinity",
|
|
"description": "Understanding God as Father, Son, and Holy Spirit",
|
|
"sections": [
|
|
{
|
|
"title": "The One God",
|
|
"verses": [
|
|
"Deuteronomy 6:4",
|
|
"Isaiah 45:5",
|
|
"1 Corinthians 8:6",
|
|
"James 2:19"
|
|
],
|
|
"content": "Scripture declares with unwavering clarity that there is one God and one alone. 'Hear, O Israel: The LORD our God is one LORD'\u2014this foundational confession, known as the Shema, establishes strict monotheism as central to biblical faith. 'I am the LORD, and there is none else, there is no God beside me,' proclaims Isaiah. There is but one God, the Father, of whom are all things, and we in Him; and one Lord Jesus Christ, by whom are all things, and we by Him. The demons themselves acknowledge this truth, for they believe there is one God and tremble. Christianity is not tri-theism but monotheism\u2014we worship one God, not three gods. Yet this one God exists eternally in three distinct persons. This mystery transcends human comprehension yet stands firmly revealed in Scripture. The unity of God's essence does not negate the plurality of persons within the Godhead. Throughout church history, heresies have arisen from overemphasizing either God's oneness (modalism, which denies distinct persons) or threeness (tri-theism, which divides the Godhead). Orthodox Christianity maintains both truths in tension: God is one in essence, three in persons\u2014a mystery we affirm even when we cannot fully comprehend its depths."
|
|
},
|
|
{
|
|
"title": "The Father",
|
|
"verses": [
|
|
"Matthew 6:9",
|
|
"John 17:1-3",
|
|
"Ephesians 1:3",
|
|
"1 Corinthians 8:6"
|
|
],
|
|
"content": "God the Father stands revealed as the first person of the Trinity, eternally generating the Son and spirating the Holy Spirit. 'Our Father which art in heaven, hallowed be thy name,' teaches Jesus in the pattern prayer, establishing the Father's priority in the Godhead's economy. In His high priestly prayer, Christ addresses the Father: 'This is life eternal, that they might know thee the only true God, and Jesus Christ, whom thou hast sent.' The God and Father of our Lord Jesus Christ is blessed us with all spiritual blessings in heavenly places in Christ. There is but one God, the Father, of whom are all things, and we in Him. The Father is distinguished by His role as source and origin within the Trinity\u2014not in terms of essence (the three persons share equally in the divine nature) but in terms of order and relationship. The Father eternally begets the Son, sends the Son into the world for redemption, and with the Son sends forth the Holy Spirit. He is the fountain of deity from whom all blessings flow, the architect of redemption who planned salvation in eternity past, and the ultimate object of worship to whom glory ascends through the Son and in the Spirit. Understanding the Father's distinct personhood prevents us from viewing God as an impersonal force while recognizing His loving relationship with His children."
|
|
},
|
|
{
|
|
"title": "The Son's Deity",
|
|
"verses": [
|
|
"John 1:1",
|
|
"Colossians 2:9",
|
|
"Hebrews 1:8",
|
|
"Titus 2:13"
|
|
],
|
|
"content": "The deity of Jesus Christ constitutes a non-negotiable article of orthodox Christianity. 'In the beginning was the Word, and the Word was with God, and the Word was God'\u2014John's prologue establishes both Christ's eternal existence and His full deity. In Christ dwells all the fullness of the Godhead bodily; He is the complete revelation and embodiment of divine nature. The Father addresses the Son: 'Thy throne, O God, is for ever and ever,' applying the divine title directly to Christ. We await the blessed hope and glorious appearing of our great God and Savior Jesus Christ. The Son is not a created being, not a lesser deity, not an exalted angel, but very God of very God. He possesses every divine attribute: eternality (John 8:58, 'Before Abraham was, I AM'), omniscience (John 21:17), omnipotence (Matthew 28:18), omnipresence (Matthew 28:20), immutability (Hebrews 13:8), and the authority to forgive sins (Mark 2:5-7). Christ receives worship appropriate to God alone (Hebrews 1:6), bears titles belonging to deity (Alpha and Omega, Revelation 22:13), and performs works only God can accomplish (creation, sustaining all things, final judgment). Denying Christ's full deity undermines the gospel, for only God could pay sin's infinite penalty and only God could satisfy divine justice. Lesser saviors offer lesser salvation; Christ's deity guarantees salvation's sufficiency."
|
|
},
|
|
{
|
|
"title": "The Holy Spirit's Deity",
|
|
"verses": [
|
|
"Acts 5:3-4",
|
|
"1 Corinthians 3:16",
|
|
"2 Corinthians 3:17",
|
|
"Hebrews 9:14"
|
|
],
|
|
"content": "The Holy Spirit is not an impersonal force or divine influence but the third person of the Trinity, fully God and equal with Father and Son. When Ananias lied to the Holy Spirit, Peter declared, 'Thou hast not lied unto men, but unto God'\u2014equating the Spirit directly with deity. Know ye not that ye are the temple of God, and that the Spirit of God dwells in you? The Lord is that Spirit, and where the Spirit of the Lord is, there is liberty. Christ, through the eternal Spirit, offered Himself without spot to God. The Spirit possesses divine attributes: omniscience (1 Corinthians 2:10-11, He searches all things, even the deep things of God), omnipresence (Psalm 139:7-10), and omnipotence (Luke 1:35, power to accomplish the virgin conception). He performs divine works: creation (Genesis 1:2, Job 33:4), inspiration of Scripture (2 Peter 1:21), regeneration (John 3:5-8), sanctification (2 Thessalonians 2:13), and resurrection (Romans 8:11). The Spirit is a person, not a thing\u2014He can be grieved (Ephesians 4:30), resisted (Acts 7:51), blasphemed (Matthew 12:31-32), and lied to (Acts 5:3). He teaches, guides, convicts, intercedes, and speaks. The doctrine of the Spirit's deity protects against both viewing Him as impersonal energy and diminishing His equality within the Godhead. To know God fully requires knowing Father, Son, and Holy Spirit as one God in three persons."
|
|
},
|
|
{
|
|
"title": "Tri-unity",
|
|
"verses": [
|
|
"Matthew 28:19",
|
|
"2 Corinthians 13:14",
|
|
"Ephesians 4:4-6",
|
|
"1 Peter 1:2"
|
|
],
|
|
"content": "The term 'Trinity' does not appear in Scripture, yet the doctrine pervades biblical revelation\u2014three persons sharing one divine essence. Christ commands baptism 'in the name of the Father, and of the Son, and of the Holy Ghost'\u2014note the singular 'name,' not names, indicating unity, yet three distinct persons. The apostolic benediction pronounces 'the grace of the Lord Jesus Christ, and the love of God, and the communion of the Holy Ghost'\u2014three persons, one blessing. Paul affirms 'one body, one Spirit, one hope, one Lord, one faith, one baptism, one God and Father of all, who is above all, and through all, and in you all.' Peter writes of those 'elect according to the foreknowledge of God the Father, through sanctification of the Spirit, unto obedience and sprinkling of the blood of Jesus Christ.' These Trinitarian formulations demonstrate that from Christianity's earliest days, believers understood God as three-in-one. The Trinity is not mathematical absurdity (1+1+1=3) but ontological mystery (1x1x1=1)\u2014one God subsisting eternally in three persons. Each person is fully God, possessing the complete divine nature; yet there are not three gods but one. The persons are distinguished by their relationships: the Father unbegotten, the Son eternally begotten of the Father, the Spirit proceeding from Father and Son. This doctrine safeguards against false views: modalism (God merely appearing in three modes), Arianism (Christ as created being), and tri-theism (three separate gods). The Trinity reveals both God's transcendent mystery and His relational nature."
|
|
},
|
|
{
|
|
"title": "The Trinity in Creation and Redemption",
|
|
"verses": [
|
|
"Genesis 1:1-3",
|
|
"Colossians 1:16",
|
|
"Ephesians 1:3-14",
|
|
"1 Peter 1:18-20"
|
|
],
|
|
"content": "The entire work of creation manifests Trinitarian cooperation. In the beginning God (Elohim, a plural noun) created the heaven and the earth, the Spirit of God moved upon the face of the waters, and God spoke (the Word, John 1:3)\u2014Father, Spirit, and Son active in creation. By Christ were all things created, visible and invisible, whether thrones or dominions or principalities or powers\u2014all things were created by Him and for Him. Redemption likewise displays Trinitarian harmony: the Father elected us in Christ before the foundation of the world, the Son redeemed us with His precious blood, and the Spirit sanctifies us unto obedience and applies Christ's work to our hearts. Ephesians 1:3-14 traces salvation's full scope in Trinitarian terms: chosen by the Father, redeemed through the Son's blood, sealed by the Spirit. First Peter describes believers as 'elect according to the foreknowledge of God the Father, through sanctification of the Spirit, unto obedience and sprinkling of the blood of Jesus Christ.' Every divine work ad extra (directed outward toward creation) involves all three persons, though particular aspects may be appropriated to specific persons. The Father plans, the Son accomplishes, the Spirit applies\u2014yet all three cooperate in each phase. This Trinitarian cooperation reveals God's unified purpose while honoring the distinct roles of each person. Understanding the Trinity enriches our grasp of how God works, demonstrating divine wisdom and love at every level."
|
|
},
|
|
{
|
|
"title": "Practical Implications",
|
|
"verses": [
|
|
"Romans 8:26-27",
|
|
"John 14:16-17",
|
|
"Hebrews 7:25",
|
|
"Ephesians 2:18"
|
|
],
|
|
"content": "The doctrine of the Trinity, far from being abstract theology, profoundly impacts Christian life and worship. When you pray, the entire Godhead engages in your communion with heaven: the Spirit helps your infirmities and makes intercession according to God's will, the Son ever lives to make intercession for you at the Father's right hand, and the Father hears and answers in accordance with His perfect wisdom and love. Through Christ we have access by one Spirit unto the Father\u2014each person of the Trinity actively involved in bringing you into God's presence. Understanding the Trinity prevents error: you need not fear approaching God as though He were distant or reluctant (the Father loves you), insufficient (the Son's work is complete), or absent (the Spirit indwells you). The Trinity also models relationships: the mutual love, honor, and deference among Father, Son, and Spirit provide the pattern for human relationships in marriage, church, and society. Unity without uniformity, distinction without division, equality without identity\u2014these Trinitarian realities instruct our own communities. The Trinity assures believers that God is not solitary but relational, not isolated but communal\u2014and He invites us into fellowship with His triune life. When we are baptized into the name of Father, Son, and Holy Spirit, we are brought into covenant relationship with the one true God in three persons. This mystery humbles our intellect while exalting our hearts in worship of Him who is beyond full comprehension yet graciously revealed in Scripture."
|
|
},
|
|
{
|
|
"title": "Worship of the Triune God",
|
|
"verses": [
|
|
"Revelation 4:8-11",
|
|
"Revelation 5:12-14",
|
|
"Matthew 3:16-17",
|
|
"John 4:23-24"
|
|
],
|
|
"content": "True Christian worship is inherently Trinitarian. In Revelation's throne room vision, the four living creatures cry 'Holy, holy, holy, Lord God Almighty'\u2014the threefold 'holy' echoing Isaiah 6 and suggesting Trinitarian worship. When the Lamb takes the scroll, He receives worship equal to that given the Father: 'Worthy is the Lamb that was slain to receive power, and riches, and wisdom, and strength, and honour, and glory, and blessing.' Every creature in heaven, earth, and under the earth ascribes 'blessing, and honour, and glory, and power, unto him that sitteth upon the throne, and unto the Lamb for ever and ever.' At Christ's baptism, the Trinity manifests distinctly: the Son baptized, the Spirit descending as a dove, the Father's voice declaring, 'This is my beloved Son, in whom I am well pleased.' Jesus teaches that the Father seeks worshippers who will worship Him in Spirit and in truth\u2014worship directed to the Father, through the Son, in the Spirit. Our prayers ascend to the Father, through the Son's mediation, in the Spirit's enabling. The doxology ('Praise Father, Son, and Holy Ghost') and countless hymns reflect the church's Trinitarian worship from earliest times. We glorify not three gods but one God in three persons. When we exalt Christ, we glorify the Father who sent Him; when we honor the Father, we acknowledge the Son through whom He is revealed; when we worship in the Spirit, we commune with Father and Son. The Trinity is not a puzzle to solve but a God to adore, not merely a doctrine to affirm but a reality to experience. As we grow in grace, we enter more deeply into the mystery and majesty of the triune God."
|
|
}
|
|
]
|
|
},
|
|
"resurrection": {
|
|
"title": "The Resurrection",
|
|
"description": "Christ's victory over death and our hope",
|
|
"sections": [
|
|
{
|
|
"title": "The Historical Reality",
|
|
"verses": [
|
|
"1 Corinthians 15:3-8",
|
|
"Luke 1:1-4",
|
|
"Acts 1:3",
|
|
"1 John 1:1-3"
|
|
],
|
|
"content": "The resurrection of Jesus Christ stands as the most thoroughly attested event in ancient history, witnessed by hundreds and proclaimed fearlessly by those who saw the risen Lord. Paul recounts the gospel delivered to him: Christ died for our sins according to the Scriptures, was buried, and rose again the third day according to the Scriptures. He was seen by Cephas, then by the twelve, after that by above five hundred brethren at once (of whom the greater part remained alive when Paul wrote, available for cross-examination), then by James, then by all the apostles, and last of all by Paul himself on the Damascus road. Luke carefully investigated all things from the beginning to provide an orderly account, that Theophilus might know the certainty of the things wherein he had been instructed. Christ showed Himself alive after His passion by many infallible proofs, being seen by the disciples over forty days and speaking of things pertaining to the kingdom of God. John testifies: 'That which we have seen with our eyes, which we have looked upon, and our hands have handled, of the Word of life... declare we unto you.' The resurrection is not myth, legend, or spiritual metaphor but historical fact, testified by eyewitnesses willing to suffer and die rather than recant their testimony. The empty tomb, the transformed disciples, the birth of the church, the conversion of skeptics like Paul and James\u2014all confirm that death could not hold the Prince of Life."
|
|
},
|
|
{
|
|
"title": "Prophesied in Scripture",
|
|
"verses": [
|
|
"Psalm 16:10",
|
|
"Isaiah 53:10-11",
|
|
"Hosea 6:2",
|
|
"Acts 2:25-32"
|
|
],
|
|
"content": "Christ's resurrection was not an afterthought but the predetermined plan of God, prophesied in the Old Testament and fulfilled precisely. David prophesied, 'Thou wilt not leave my soul in hell; neither wilt thou suffer thine Holy One to see corruption'\u2014words that could not apply to David himself, whose tomb remained with them and whose flesh saw corruption, but pointed to David's greater descendant. Peter, preaching at Pentecost, applies this psalm to Christ: 'He seeing this before spake of the resurrection of Christ, that his soul was not left in hell, neither his flesh did see corruption.' Isaiah prophesied that after the Suffering Servant made His soul an offering for sin, 'He shall see His seed, He shall prolong His days'\u2014requiring resurrection after atoning death. Hosea declared, 'After two days will he revive us: in the third day he will raise us up'\u2014foreshadowing Christ's third-day resurrection and our resurrection in Him. Jesus Himself repeatedly predicted His resurrection: 'Destroy this temple, and in three days I will raise it up,' speaking of the temple of His body. He told the disciples plainly that He must be killed and raised again the third day. These prophecies demonstrate that the resurrection was no desperate improvisation after crucifixion's failure but the glorious culmination of God's eternal purpose. The Old Testament prepared believers to expect resurrection; the New Testament proclaims it as accomplished fact. Christ fulfilled every jot and tittle, rising precisely when and how the Scriptures foretold."
|
|
},
|
|
{
|
|
"title": "Christ's Power Over Death",
|
|
"verses": [
|
|
"John 10:17-18",
|
|
"Revelation 1:18",
|
|
"Romans 6:9",
|
|
"Acts 2:24"
|
|
],
|
|
"content": "Jesus Christ conquered death not as a victim overcome by superior force but as the sovereign Lord who voluntarily laid down His life and took it up again. 'I lay down my life, that I might take it again,' He declared. 'No man taketh it from me, but I lay it down of myself. I have power to lay it down, and I have power to take it again.' This commandment received He from the Father\u2014yet note, He possesses inherent power to resurrect Himself. The risen Christ announces, 'I am he that liveth, and was dead; and, behold, I am alive for evermore, Amen; and have the keys of hell and of death.' Death no longer has dominion over Him; Christ being raised from the dead dies no more. It was not possible that death should hold Him, for He is the Prince of Life, the resurrection and the life, the one who declares, 'Because I live, ye shall live also.' His resurrection demonstrates His deity\u2014only God possesses power over death. It vindicates His claims, validates His teaching, confirms His atonement's acceptance, and guarantees believers' future resurrection. Death entered through sin, but Christ, being sinless, broke death's legal claim. He descended into death's domain not as a prisoner but as a conqueror, destroying him who had the power of death\u2014the devil\u2014and delivering those who through fear of death were all their lifetime subject to bondage. Christ's resurrection is the firstfruits, guaranteeing the full harvest; death's defeat in Him ensures its ultimate destruction for all who belong to Him."
|
|
},
|
|
{
|
|
"title": "The Empty Tomb",
|
|
"verses": [
|
|
"Matthew 28:5-6",
|
|
"John 20:3-9",
|
|
"Luke 24:12",
|
|
"Mark 16:6"
|
|
],
|
|
"content": "The empty tomb stands as undeniable testimony to resurrection reality. When the women came seeking Jesus' body, the angel declared, 'He is not here: for he is risen, as he said. Come, see the place where the Lord lay.' That invitation\u2014'come, see'\u2014challenges investigation rather than demanding blind faith. When Peter and John ran to the tomb, they found the linen clothes lying and the napkin that was about His head not lying with the linen clothes but wrapped together in a place by itself. The careful arrangement of the grave clothes indicated no hasty grave robbery but orderly resurrection. John saw and believed, connecting the empty tomb with Scripture's testimony. The tomb's emptiness demanded explanation: Did disciples steal the body? Impossible\u2014they were scattered, fearful, and later willing to die proclaiming resurrection. Would they die for what they knew was a lie? Would grave-robbers carefully arrange grave clothes? Did enemies steal the body? Then why not produce it to crush the resurrection claim that threatened their power? Did the women visit the wrong tomb? The authorities could have produced Christ's body from the correct tomb. Every naturalistic explanation crumbles under scrutiny. The empty tomb, combined with post-resurrection appearances, establishes that Jesus physically rose from the dead. The tomb that held creation's Lord could not contain Him; death's prison doors burst open at resurrection power. That empty tomb in Joseph's garden proclaims eternal truth: Christ has conquered, death is defeated, and the grave has lost its victory."
|
|
},
|
|
{
|
|
"title": "Resurrection Appearances",
|
|
"verses": [
|
|
"Luke 24:36-43",
|
|
"John 20:26-29",
|
|
"John 21:9-14",
|
|
"1 Corinthians 15:5-8"
|
|
],
|
|
"content": "Christ's post-resurrection appearances demonstrate that His resurrection was bodily, not merely spiritual or visionary. When the disciples feared they saw a spirit, Jesus said, 'Behold my hands and my feet, that it is I myself: handle me, and see; for a spirit hath not flesh and bones, as ye see me have.' He ate broiled fish and honeycomb before them, proving His physical reality. When Thomas doubted, Jesus invited him, 'Reach hither thy finger, and behold my hands; and reach hither thy hand, and thrust it into my side: and be not faithless, but believing.' Thomas responded in worship: 'My Lord and my God.' On Galilee's shore, Jesus prepared breakfast for the disciples\u2014taking bread and fish and giving to them, in a scene of intimate, physical fellowship. These appearances occurred over forty days, to various individuals and groups, in different locations\u2014Jerusalem, Galilee, Emmaus, the Mount of Olives. He appeared to Mary Magdalene in the garden, to the two disciples on the Emmaus road, to Peter individually, to the twelve, to five hundred brethren at once, to James, and finally to Paul on the Damascus road. The variety and number of witnesses, the physical nature of the appearances, the transformation they wrought in fearful disciples\u2014all confirm that Jesus truly, bodily rose from death. His resurrection body was real yet glorified, physical yet not limited by physical barriers, recognizable yet possessing new properties. This foreshadows believers' resurrection bodies\u2014real, physical, yet glorified and incorruptible, fitted for eternal dwelling in the new heavens and new earth."
|
|
},
|
|
{
|
|
"title": "Our Future Resurrection",
|
|
"verses": [
|
|
"1 Corinthians 15:20-23",
|
|
"1 Thessalonians 4:13-18",
|
|
"Philippians 3:20-21",
|
|
"1 John 3:2"
|
|
],
|
|
"content": "Christ's resurrection guarantees and models believers' future resurrection. 'Now is Christ risen from the dead, and become the firstfruits of them that slept. For since by man came death, by man came also the resurrection of the dead. For as in Adam all die, even so in Christ shall all be made alive. But every man in his own order: Christ the firstfruits; afterward they that are Christ's at his coming.' When Christ returns, the dead in Christ shall rise first, then we who are alive and remain shall be caught up together with them in the clouds to meet the Lord in the air. Our Savior, the Lord Jesus Christ, shall change our vile body, that it may be fashioned like unto His glorious body, according to the working whereby He is able even to subdue all things unto Himself. When He shall appear, we shall be like Him; for we shall see Him as He is. This is the blessed hope\u2014not disembodied existence as spirits but resurrection to glorified, physical, eternal life. Our resurrection bodies will be incorruptible, glorious, powerful, and spiritual (Spirit-directed), fitted for eternal service and worship. Death for believers is but sleep\u2014temporary rest before resurrection morning. The grave cannot hold those united to the risen Christ. Just as surely as He rose, we shall rise, for our life is hid with Christ in God. When Christ who is our life shall appear, then shall we also appear with Him in glory. This hope transforms grief into expectation, fear into confidence, and death into transition."
|
|
},
|
|
{
|
|
"title": "Living in Resurrection Power",
|
|
"verses": [
|
|
"Romans 6:4-5",
|
|
"Ephesians 1:19-20",
|
|
"Philippians 3:10",
|
|
"Colossians 3:1"
|
|
],
|
|
"content": "The resurrection is not merely future hope but present power. We are buried with Christ by baptism into death, that just as Christ was raised up from the dead by the glory of the Father, even so we also should walk in newness of life. If we have been planted together in the likeness of His death, we shall be also in the likeness of His resurrection. The same exceeding greatness of power that raised Christ from the dead now works in believers\u2014the working of His mighty power which He wrought in Christ when He raised Him from the dead. Paul's consuming desire was to know Christ and the power of His resurrection\u2014not merely intellectual knowledge but experiential fellowship with resurrection life. If ye then be risen with Christ, seek those things which are above, where Christ sitteth on the right hand of God. Resurrection power enables victory over sin's dominion, strength for obedience, boldness in witness, endurance in suffering, and hope in trial. We do not await resurrection passively but experience its power presently. The Spirit who raised Jesus from the dead dwells in you and shall also quicken your mortal bodies. Resurrection life means living as those who have passed from death unto life, who have been raised from spiritual death to walk in newness of life, and who shall be raised in bodily glory at Christ's return. This present experience of resurrection power is the foretaste and guarantee of future, complete resurrection glory."
|
|
},
|
|
{
|
|
"title": "Eternal Hope",
|
|
"verses": [
|
|
"1 Corinthians 15:54-57",
|
|
"2 Timothy 1:10",
|
|
"Revelation 21:4",
|
|
"John 11:25-26"
|
|
],
|
|
"content": "The resurrection establishes Christian hope on unshakable foundation. When this corruptible shall have put on incorruption, and this mortal shall have put on immortality, then shall be brought to pass the saying that is written: Death is swallowed up in victory. O death, where is thy sting? O grave, where is thy victory? The sting of death is sin, and the strength of sin is the law. But thanks be to God, which giveth us the victory through our Lord Jesus Christ. Jesus Christ has abolished death and brought life and immortality to light through the gospel. In the new heavens and new earth, God shall wipe away all tears from believers' eyes; there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain\u2014for the former things are passed away. Jesus declared, 'I am the resurrection, and the life: he that believeth in me, though he were dead, yet shall he live: and whosoever liveth and believeth in me shall never die.' Physical death for believers is not cessation but transition, not destruction but transformation, not ending but beginning. We sorrow not as those who have no hope, for we know that our Redeemer lives and that He shall stand at the latter day upon the earth. Though worms destroy this body, yet in our flesh shall we see God. The resurrection transforms every Christian funeral from hopeless farewell to temporary parting, from tragic ending to glorious expectation. Because He lives, we shall live also\u2014this is the gospel's triumph, the believer's confidence, and eternity's certainty."
|
|
}
|
|
]
|
|
},
|
|
"heaven-eternity": {
|
|
"title": "Heaven & Eternity",
|
|
"description": "Our eternal home with God",
|
|
"sections": [
|
|
{
|
|
"title": "The Reality of Heaven",
|
|
"verses": [
|
|
"John 14:2-3",
|
|
"2 Corinthians 5:1",
|
|
"Philippians 1:23",
|
|
"Hebrews 11:16"
|
|
],
|
|
"content": "Heaven is not myth, wishful thinking, or mere spiritual metaphor but the actual dwelling place of God and the eternal destination of all believers. Jesus declared, 'In my Father's house are many mansions: if it were not so, I would have told you. I go to prepare a place for you. And if I go and prepare a place for you, I will come again, and receive you unto myself; that where I am, there ye may be also.' Christ's promise rests upon His character\u2014He would not deceive us with false hope. We know that if our earthly house of this tabernacle were dissolved, we have a building of God, a house not made with hands, eternal in the heavens. Paul desired to depart and be with Christ, which is far better than remaining in this life\u2014demonstrating that heaven is conscious existence in Christ's presence, not soul sleep or annihilation. The patriarchs looked for a city which hath foundations, whose builder and maker is God; God is not ashamed to be called their God, for He has prepared for them a city. Heaven's reality gives meaning to earthly pilgrimage, comfort in suffering, and motivation for holiness. It is not escapism to long for heaven but biblical realism to recognize that this fallen world is not our home. We are strangers and pilgrims on earth, seeking a better country, that is, a heavenly one. The reality of heaven transforms how we view possessions, relationships, trials, and death itself. Heaven is real, prepared, promised, and awaiting all who belong to Christ."
|
|
},
|
|
{
|
|
"title": "The New Heaven and Earth",
|
|
"verses": [
|
|
"Revelation 21:1-2",
|
|
"2 Peter 3:13",
|
|
"Isaiah 65:17",
|
|
"Romans 8:19-21"
|
|
],
|
|
"content": "God's eternal plan encompasses not disembodied souls floating in clouds but resurrected believers inhabiting a renovated, glorified creation. John beheld 'a new heaven and a new earth: for the first heaven and the first earth were passed away; and there was no more sea.' The holy city, new Jerusalem, descends from God out of heaven, prepared as a bride adorned for her husband. We look for new heavens and a new earth, wherein dwells righteousness\u2014not an escape from physicality but a redeemed, perfected physical reality. 'Behold, I create new heavens and a new earth: and the former shall not be remembered, nor come into mind,' declares the Lord through Isaiah. The earnest expectation of creation itself waits for the manifestation of the sons of God, for the creation was made subject to vanity not willingly, but shall be delivered from the bondage of corruption into the glorious liberty of the children of God. God will not abandon His creation to sin's ruin but will purify and renew it, restoring Eden's glory in magnified splendor. The new earth will be earth still\u2014with nations, cities, culture, activity, and service\u2014yet freed from sin, death, decay, and curse. This vision sanctifies physical creation, embodied existence, and material reality, demonstrating that redemption encompasses the whole created order. We shall not spend eternity as ghosts in a spiritual realm but as resurrected humans in a glorified cosmos, living and reigning with Christ in the new heavens and new earth forever."
|
|
},
|
|
{
|
|
"title": "No More Curse",
|
|
"verses": [
|
|
"Revelation 22:3",
|
|
"Revelation 21:4",
|
|
"1 Corinthians 15:26",
|
|
"Isaiah 25:8"
|
|
],
|
|
"content": "In the eternal state, every consequence of sin and the fall will be forever removed. 'There shall be no more curse,' declares Revelation 22:3, reversing Genesis 3's pronouncement when sin entered creation. God shall wipe away all tears from their eyes; there shall be no more death, neither sorrow, nor crying, neither shall there be any more pain\u2014for the former things are passed away. The last enemy that shall be destroyed is death, abolished forever when Christ completes His victory. He will swallow up death in victory, and the Lord GOD will wipe away tears from off all faces. The effects of the curse\u2014thorns, thistles, toil, pain, death, decay, disaster, disease\u2014all removed eternally. Relationships marred by sin's corruption will be perfected in love. Bodies weakened by age and affliction will be glorified and incorruptible. Creation groaning under bondage to decay will flourish in perfect harmony. Satan and his angels will be consigned to the lake of fire, unable to tempt or accuse. Sin itself will be utterly absent\u2014not merely restrained but impossible, for our natures will be confirmed in righteousness and holiness. The removal of the curse means unbroken fellowship with God, unmarred joy, perfect peace, and complete satisfaction. Every sorrow known in this fallen world finds its reversal in eternity: where there was death, resurrection; where pain, perfect wholeness; where tears, endless joy; where curse, unmitigated blessing. This prospect sustains believers through present suffering, for we know that our light affliction, which is but for a moment, works for us a far more exceeding and eternal weight of glory."
|
|
},
|
|
{
|
|
"title": "Perfect Fellowship with God",
|
|
"verses": [
|
|
"Revelation 21:3",
|
|
"1 Corinthians 13:12",
|
|
"1 John 3:2",
|
|
"Psalm 16:11"
|
|
],
|
|
"content": "Heaven's supreme glory is not streets of gold or gates of pearl but unhindered, eternal fellowship with God Himself. John heard a great voice 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.' The incarnation foreshadowed this eternal reality\u2014Emmanuel, God with us\u2014but in the new creation, God's presence will be immediate, visible, and unmediated. Now we see through a glass, darkly, but then face to face; now we know in part, but then shall we know even as also we are known. When Christ shall appear, we shall be like Him; for we shall see Him as He is\u2014the beatific vision, beholding God's unveiled glory without perishing, transformed into Christ's image perfectly and eternally. In God's presence is fullness of joy, at His right hand are pleasures forevermore. The redeemed will walk with God as Adam did in Eden, commune with Christ as the disciples did, and experience the Spirit's fellowship without grieving Him. Every question will find its answer, every longing its fulfillment, every capacity its full satisfaction in knowing God. This fellowship is not static contemplation but dynamic relationship\u2014serving God, worshipping Him, exploring His infinite perfections eternally. The greatest joy of heaven is not what we receive but whom we see; not the place but the Person; not the gifts but the Giver. To be with Christ, to behold His face, to know as we are known\u2014this is heaven's heart and the believer's eternal portion."
|
|
},
|
|
{
|
|
"title": "Eternal Worship",
|
|
"verses": [
|
|
"Revelation 4:8-11",
|
|
"Revelation 5:11-14",
|
|
"Revelation 7:9-12",
|
|
"Revelation 22:3"
|
|
],
|
|
"content": "Heavenly existence centers upon ceaseless, joyful worship of the triune God. In Revelation's throne room visions, the four living creatures rest not day and night, saying, 'Holy, holy, holy, Lord God Almighty, which was, and is, and is to come.' The twenty-four elders fall down before Him that sits on the throne and worship Him that lives for ever and ever, casting their crowns before the throne and saying, 'Thou art worthy, O Lord, to receive glory and honour and power: for thou hast created all things, and for thy pleasure they are and were created.' Ten thousand times ten thousand angels encircle the throne, crying with a loud voice, 'Worthy is the Lamb that was slain to receive power, and riches, and wisdom, and strength, and honour, and glory, and blessing.' A great multitude which no man could number, of all nations, kindreds, people, and tongues, stand before the throne clothed with white robes, crying, 'Salvation to our God which sitteth upon the throne, and unto the Lamb.' The redeemed servants of God shall serve Him eternally\u2014worship not as tedious obligation but as joyful privilege and perfect satisfaction. This worship encompasses adoration, thanksgiving, praise, service, and obedient love\u2014the complete response of redeemed creation to infinite glory. Far from boring, eternal worship means exploring God's inexhaustible perfections, discovering new dimensions of His character, ascending from glory to glory in ever-increasing knowledge and love. Earthly worship, at its best, provides but a foretaste; heavenly worship will engage every capacity in perpetual, ecstatic contemplation of infinite beauty, wisdom, power, and love."
|
|
},
|
|
{
|
|
"title": "The Beatific Vision",
|
|
"verses": [
|
|
"Matthew 5:8",
|
|
"Revelation 22:4",
|
|
"Job 19:25-27",
|
|
"Psalm 17:15"
|
|
],
|
|
"content": "The beatific vision\u2014seeing God face to face\u2014constitutes the culmination of human existence and the supreme reward of redemption. 'Blessed are the pure in heart: for they shall see God,' promises Jesus in the Beatitudes. In the new Jerusalem, God's servants shall see His face, and His name shall be in their foreheads. What Moses requested and was denied\u2014'I beseech thee, shew me thy glory'\u2014will be granted fully to all the redeemed. Job, in his extremity, confessed faith in this vision: '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: whom I shall see for myself, and mine eyes shall behold, and not another.' David anticipated satisfaction when awakening in God's likeness: 'I will behold thy face in righteousness: I shall be satisfied, when I awake, with thy likeness.' No created being has seen God the Father in His essential glory\u2014'No man hath seen God at any time'\u2014for the unveiled divine essence would consume fallen creatures. But in our glorified, sinless state, confirmed in righteousness and transformed into Christ's image, we shall behold the Father's face without perishing. This vision will not exhaust itself in a moment but extend eternally, for God is infinite and our exploration of His perfections will never end. The beatific vision answers every human longing, satisfies every capacity, and fulfills our creation purpose\u2014to know God and enjoy Him forever. This is the great 'I shall' of Scripture: I shall see God, I shall be like Him, I shall dwell in His house forever."
|
|
},
|
|
{
|
|
"title": "Rewards and Crowns",
|
|
"verses": [
|
|
"1 Corinthians 3:12-15",
|
|
"2 Corinthians 5:10",
|
|
"Revelation 22:12",
|
|
"2 Timothy 4:7-8"
|
|
],
|
|
"content": "While salvation is by grace alone, Scripture clearly teaches that believers will receive rewards based on faithful service. Each believer's work shall be tested by fire, and if any man's work abide which he hath built thereupon, he shall receive a reward. We must all appear before the judgment seat of Christ, that every one may receive the things done in his body, whether good or bad. Christ declares, 'Behold, I come quickly; and my reward is with me, to give every man according as his work shall be.' Paul, at life's end, anticipated the crown of righteousness which the Lord, the righteous judge, would give him at that day\u2014and not to him only, but unto all them also that love His appearing. Scripture mentions various crowns: the incorruptible crown for disciplined service (1 Corinthians 9:25), the crown of rejoicing for soul-winning (1 Thessalonians 2:19), the crown of life for enduring temptation (James 1:12), the crown of glory for faithful shepherding (1 Peter 5:4), and the crown of righteousness for those who love Christ's appearing. Yet these rewards are not earned in the sense of meriting salvation\u2014that remains wholly by grace. Rather, they represent God's gracious recognition of works performed through His enabling. Moreover, Revelation 4:10 depicts the elders casting their crowns before God's throne, demonstrating that our rewards become instruments for worshipping Him who gave us grace to serve. The doctrine of rewards motivates diligent service, careful stewardship, and faithful endurance, knowing that our labor in the Lord is not in vain."
|
|
},
|
|
{
|
|
"title": "Living with Eternity in View",
|
|
"verses": [
|
|
"Colossians 3:1-2",
|
|
"2 Corinthians 4:17-18",
|
|
"Philippians 3:20",
|
|
"Hebrews 13:14"
|
|
],
|
|
"content": "The reality of heaven and eternity should profoundly shape present priorities, values, and choices. 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. Our light affliction, which is but for a moment, works for us a far more exceeding and eternal weight of glory\u2014while we look not at the things which are seen, but at the things which are not seen: for the things which are seen are temporal; but the things which are not seen are eternal. Our conversation (citizenship) is in heaven, from whence also we look for the Savior, the Lord Jesus Christ. Here we have no continuing city, but we seek one to come. This eternal perspective prevents over-investment in temporary things, provides comfort in suffering, motivates holiness, and generates wise stewardship. If heaven is real and eternal, and earth is temporary and passing, wisdom demands living for the permanent rather than the temporary, investing in the eternal rather than the perishing. This is not escapism but realism\u2014acknowledging reality and aligning life accordingly. Those who live with eternity in view redeem the time, number their days, lay up treasures in heaven, pursue holiness, practice hospitality, share the gospel, endure suffering patiently, and hold earthly possessions loosely. The prospect of eternity transforms how we view success, comfort, possessions, suffering, relationships, and death. We are pilgrims passing through a temporary world, heading toward an eternal home. May we live as those who know that heaven is real, hell is real, eternity is long, and Christ is coming soon."
|
|
}
|
|
]
|
|
},
|
|
"biblical-marriage": {
|
|
"title": "Biblical Marriage",
|
|
"description": "God's design for marriage",
|
|
"sections": [
|
|
{
|
|
"title": "God's Original Design",
|
|
"verses": [
|
|
"Genesis 2:18-24",
|
|
"Matthew 19:4-6",
|
|
"Genesis 1:27-28",
|
|
"Proverbs 18:22"
|
|
],
|
|
"content": "Marriage is not a human invention, cultural construct, or social convenience but a divine institution established by God in creation. 'The LORD God said, It is not good that the man should be alone; I will make him an help meet for him.' God created woman from man's rib, brought her to Adam, and instituted the first marriage. Adam's response\u2014'This is now bone of my bones, and flesh of my flesh'\u2014expresses the profound unity and complementarity God designed. 'Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.' Jesus affirmed this creation ordinance: 'Have ye not read, that he which made them at the beginning made them male and female, and said, For this cause shall a man leave father and mother, and shall cleave to his wife: and they twain shall be one flesh?' Marriage predates the fall, civil government, and even the giving of the law\u2014it is woven into the fabric of creation itself. God created humanity male and female, blessed them, and commanded fruitfulness\u2014establishing the family as creation's basic unit. Whoso findeth a wife findeth a good thing, and obtaineth favour of the LORD. Marriage reflects God's design for complementarity, companionship, procreation, and the display of the gospel mystery. Understanding marriage as divine institution protects it from redefinition by culture or government. What God has joined together, let not man put asunder. Marriage's permanence, exclusivity, and heterosexual design flow from its divine origin and purpose."
|
|
},
|
|
{
|
|
"title": "One Flesh Union",
|
|
"verses": [
|
|
"Genesis 2:24",
|
|
"1 Corinthians 6:16",
|
|
"Ephesians 5:31",
|
|
"Mark 10:8"
|
|
],
|
|
"content": "The 'one flesh' union constitutes marriage's essential nature\u2014a mysterious joining that transcends mere contract or cohabitation. When a man cleaves to his wife, they become one flesh\u2014not two individuals cooperating but one new entity in God's sight. Paul applies this truth both to marriage (Ephesians 5:31) and, negatively, to sexual immorality (1 Corinthians 6:16), demonstrating that sexual union creates a one-flesh bond whether legitimate (marriage) or illegitimate (fornication). This is why fornication and adultery are uniquely sinful\u2014they violate or destroy the one-flesh design. The one-flesh union encompasses physical, emotional, spiritual, legal, and social dimensions. Physically, sexual union expresses and reinforces this bond. Emotionally, spouses share life's deepest intimacies, joys, and sorrows. Spiritually, believing couples unite in worship, prayer, and ministry. Legally, they become one economic and social unit. Socially, they present themselves as one entity. This comprehensive unity explains why divorce is so devastating\u2014it attempts to sever what God has joined, tearing apart one flesh. The one-flesh union is not achieved gradually through years of marriage but established at the marriage covenant itself, then expressed, deepened, and enjoyed throughout married life. Understanding this mystery protects against viewing marriage as mere partnership, guards sexual purity (sex belongs exclusively within marriage), and motivates spouses to cultivate unity in every dimension. In marriage, two truly become one\u2014not losing individual identity but forming a new, inseparable union reflecting divine mystery."
|
|
},
|
|
{
|
|
"title": "Covenant Commitment",
|
|
"verses": [
|
|
"Malachi 2:14-16",
|
|
"Proverbs 2:17",
|
|
"Matthew 19:6",
|
|
"Romans 7:2"
|
|
],
|
|
"content": "Biblical marriage is a covenant\u2014a solemn, binding promise made before God and witnesses, not a contract easily dissolved when inconvenient. Malachi addresses those who dealt treacherously with the wife of their youth: 'The LORD hath been witness between thee and the wife of thy youth, against whom thou hast dealt treacherously: yet is she thy companion, and the wife of thy covenant.' The unfaithful wife of Proverbs 'forgetteth the covenant of her God.' Jesus declared that what God has joined together, let not man put asunder, and Moses' divorce permission was given because of hardness of heart, not because God approves dissolution of marriage. The wife is bound by the law to her husband as long as he lives. Covenant commitment means unconditional faithfulness\u2014'for better, for worse, for richer, for poorer, in sickness and in health, till death us do part.' This permanence reflects God's faithful covenant with His people, who declares, 'I hate putting away' (divorce). Marriage vows are not suggestions or aspirations but binding promises invoking God's name. Contemporary culture's casual approach to marriage\u2014serial relationships, cohabitation, easy divorce\u2014contradicts Scripture's covenant theology. The biblical standard requires preparation before marriage (counting the cost, ensuring compatibility and spiritual unity), commitment during marriage (working through difficulties rather than abandoning vows), and permanence (recognizing that only death or a partner's adultery potentially releases from the covenant). This high view of marriage as covenant produces stability for children, security for spouses, and witness to God's faithfulness."
|
|
},
|
|
{
|
|
"title": "Roles and Mutual Submission",
|
|
"verses": [
|
|
"Ephesians 5:22-25",
|
|
"1 Peter 3:1-7",
|
|
"Colossians 3:18-19",
|
|
"Genesis 2:18"
|
|
],
|
|
"content": "Scripture establishes complementary roles within marriage, with wives called to submit to husbands and husbands called to love wives sacrificially. 'Wives, submit yourselves unto your own husbands, as unto the Lord. For the husband is the head of the wife, even as Christ is the head of the church.' Likewise, ye wives, be in subjection to your own husbands. Wives, submit yourselves unto your own husbands, as it is fit in the Lord. This submission is not inferiority (men and women are equal in value and dignity before God) but functional order within marriage, mirroring Christ's relationship to the church. The husband's headship, however, is defined by Christ's example: 'Husbands, love your wives, even as Christ also loved the church, and gave himself for it.' Husbands must dwell with wives according to knowledge, giving honour unto them as unto the weaker vessel, and as being heirs together of the grace of life. Husbands, love your wives, and be not bitter against them. Biblical headship is servant leadership\u2014initiating spiritual direction, providing protection and provision, making final decisions prayerfully, and laying down life for wife's good. The wife's submission is to her own husband, not to men generally, and never requires obeying commands to sin. Woman was created as man's 'help meet'\u2014not inferior assistant but necessary, complementary partner. Mutual submission (Ephesians 5:21) frames specific role instructions, indicating that both spouses defer to one another in love. This complementarian design, properly understood and applied, produces harmony, security, and flourishing. It counters both secular egalitarianism (denying all distinctions) and sinful chauvinism (distorting headship into domination)."
|
|
},
|
|
{
|
|
"title": "Love and Respect",
|
|
"verses": [
|
|
"Ephesians 5:33",
|
|
"Titus 2:4",
|
|
"1 Peter 3:7",
|
|
"Colossians 3:19"
|
|
],
|
|
"content": "Scripture's marital commands center upon love for husbands and respect for wives. 'Let every one of you in particular so love his wife even as himself; and the wife see that she reverence her husband.' The older women should teach the young women to love their husbands, to love their children. Husbands must give honour unto wives, dwelling with them according to knowledge. Husbands must love their wives and be not bitter against them. These complementary commands address each sex's deepest need and greatest temptation: husbands need respect (their greatest fear is inadequacy and failure); wives need love (their greatest fear is abandonment and neglect). The husband's love must be active, sacrificial, and Christlike\u2014loving as Christ loved the church, giving himself for her. This love serves, protects, provides, cherishes, and nourishes. It is not primarily emotional feeling but committed action for the wife's good. The wife's respect honors her husband's position, trusts his leadership, speaks well of him, and supports his decisions. She reverences him\u2014treating him with honor and deference, not contempt or manipulation. When husbands love sacrificially, wives find submission joyful; when wives respect genuinely, husbands find loving natural. Conversely, disrespect provokes husbands to anger and withdrawal; unloving harshness provokes wives to bitterness and rebellion. The cycle of love and respect must be maintained regardless of the other's failure\u2014husbands must love even unsubmissive wives; wives must respect even unloving husbands. As both fulfill their callings, marriage flourishes, demonstrating God's design and displaying the gospel's beauty to a watching world."
|
|
},
|
|
{
|
|
"title": "Sexual Intimacy",
|
|
"verses": [
|
|
"1 Corinthians 7:3-5",
|
|
"Hebrews 13:4",
|
|
"Proverbs 5:18-19",
|
|
"Song of Solomon 4:1-16"
|
|
],
|
|
"content": "God designed sexual intimacy as a holy gift for marriage, providing pleasure, unity, procreation, and protection from temptation. 'Let the husband render unto the wife due benevolence: and likewise also the wife unto the husband. The wife hath not power of her own body, but the husband: and likewise also the husband hath not power of his own body, but the wife. Defraud ye not one the other, except it be with consent for a time, that ye may give yourselves to fasting and prayer; and come together again, that Satan tempt you not for your incontinency.' Marriage is honourable in all, and the bed undefiled: but whoremongers and adulterers God will judge. Let thy fountain be blessed: and rejoice with the wife of thy youth. Let her breasts satisfy thee at all times; and be thou ravished always with her love. The Song of Solomon celebrates marital love in explicitly sensual terms, demonstrating that God approves sexual pleasure within marriage. These passages establish several principles: First, sexual intimacy is good, holy, and commanded within marriage\u2014not a necessary evil but a divine gift. Second, both spouses have conjugal rights and responsibilities\u2014sex is mutual, not one-sided. Third, except for brief periods of mutual consent for prayer, spouses should not deprive one another sexually. Fourth, regular sexual intimacy protects against temptation to immorality. Fifth, sex belongs exclusively within heterosexual marriage\u2014all other sexual expression (fornication, adultery, homosexuality) is sin. Healthy marital intimacy requires communication, selflessness, patience, and prioritization. Many Christian marriages suffer from neglecting this gift through false spirituality, busyness, or selfishness. Biblical sexuality rejects both prudish denial (sex is shameful) and pornographic distortion (sex is merely physical recreation)."
|
|
},
|
|
{
|
|
"title": "Spiritual Partnership",
|
|
"verses": [
|
|
"1 Peter 3:7",
|
|
"1 Corinthians 7:14",
|
|
"Joshua 24:15",
|
|
"Ecclesiastes 4:9-12"
|
|
],
|
|
"content": "Christian marriage at its best is spiritual partnership\u2014two believers united in worship, prayer, ministry, and mission. Husbands must dwell with wives according to knowledge, giving honour unto the wife as unto the weaker vessel, and as being heirs together of the grace of life, that your prayers be not hindered. The unbelieving husband is sanctified by the wife, and the unbelieving wife is sanctified by the husband (referring to covenant privilege, not salvation)\u2014yet this acknowledges marriage's spiritual dimension. Joshua declared, 'As for me and my house, we will serve the LORD,' establishing spiritual leadership within the family. Two are better than one, for if they fall, the one will lift up his fellow; and a threefold cord is not quickly broken\u2014the marriage with God at its center possesses strength beyond mere human partnership. Spiritual partnership means praying together, studying Scripture together, worshipping together, serving together, raising children in the Lord together, and pursuing Christ together. The husband's spiritual leadership involves initiating family worship, teaching God's Word, modeling godliness, and directing the household toward Christ. The wife's spiritual partnership involves supporting, encouraging, teaching children, creating a godly home atmosphere, and exercising her own gifts. When both spouses pursue Christ, they naturally draw closer to one another. When both submit to Scripture, conflicts find resolution. When both depend on the Spirit, love and patience flourish. Marriage between believers enjoys resources unavailable to unbelievers\u2014God's Word for guidance, the Spirit's power for transformation, prayer for divine intervention, and the church for support. This spiritual dimension elevates marriage from natural institution to redemptive metaphor and ministry partnership."
|
|
},
|
|
{
|
|
"title": "Marriage as Gospel Picture",
|
|
"verses": [
|
|
"Ephesians 5:25-32",
|
|
"Revelation 19:7-9",
|
|
"2 Corinthians 11:2",
|
|
"Isaiah 54:5"
|
|
],
|
|
"content": "The ultimate purpose of marriage transcends personal happiness or social stability\u2014marriage exists to display the gospel and Christ's relationship to His church. 'Husbands, love your wives, even as Christ also loved the church, and gave himself for it; that he might sanctify and cleanse it with the washing of water by the word, that he might present it to himself a glorious church, not having spot, or wrinkle, or any such thing; but that it should be holy and without blemish... This is a great mystery: but I speak concerning Christ and the church.' Marriage from creation foreshadowed Christ's union with His bride. The marriage of the Lamb is come, and His wife hath made herself ready\u2014the church clothed in fine linen, clean and white. Paul was jealous over the Corinthians with godly jealousy, having espoused them to one husband, to present them as a chaste virgin to Christ. 'Thy Maker is thine husband; the LORD of hosts is his name,' declares Isaiah. When husbands love sacrificially, they image Christ's love. When wives submit joyfully, they image the church's response. When marriages demonstrate covenant faithfulness, they testify to God's faithfulness. When sexual purity is maintained, it pictures the church's devotion to Christ alone. When love perseveres through difficulty, it reveals redeeming grace. This gospel purpose elevates marriage beyond self-fulfillment to sacred calling. It provides motivation in difficulty\u2014your marriage testifies to Christ. It offers perspective in conflict\u2014is your marriage displaying the gospel? It gives meaning to sacrifice\u2014laying down your life for your spouse images Christ's atonement. Christian marriage is earthly picture of heavenly reality, temporary shadow of eternal substance, visible demonstration of invisible grace. May our marriages magnify Christ and adorn the gospel."
|
|
}
|
|
]
|
|
},
|
|
"raising-children": {
|
|
"title": "Raising Children",
|
|
"description": "Biblical principles for parenting",
|
|
"sections": [
|
|
{
|
|
"title": "Children as God's Heritage",
|
|
"verses": [
|
|
"Psalm 127:3-5",
|
|
"Psalm 128:3",
|
|
"Genesis 1:28",
|
|
"Malachi 2:15"
|
|
],
|
|
"content": "Children are not accidents, burdens, or obstacles to personal fulfillment but gifts from God\u2014His heritage and reward. 'Lo, children are an heritage of the LORD: and the fruit of the womb is his reward. As arrows are in the hand of a mighty man; so are children of the youth. Happy is the man that hath his quiver full of them.' Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table. God's first command to humanity was 'Be fruitful, and multiply, and replenish the earth'\u2014establishing procreation as divine calling, not merely biological function. God seeks godly seed (offspring) through marriage. This biblical view counters contemporary culture's attitude toward children as optional accessories, financial liabilities, or impediments to career and pleasure. Children are blessings, not burdens; treasures, not troubles; heritage, not hindrances. Parents are stewards of these precious souls, accountable to God for their nurture and training. The comparison to arrows is instructive\u2014arrows must be carefully crafted, aimed at proper targets, and released at the right time. So parents shape character, direct affections toward God, and eventually launch children into adult life and ministry. Children are investments in eternity, opportunities for discipleship, and means of extending godly influence beyond one's own lifespan. This perspective transforms parenting from duty to privilege, from burden to calling. It motivates sacrifice, justifies investment of time and resources, and provides joy even in parenting's difficulties. Those who embrace children as God's heritage receive blessing; those who reject or resent them forfeit joy and despise God's gifts."
|
|
},
|
|
{
|
|
"title": "Training in the Lord",
|
|
"verses": [
|
|
"Proverbs 22:6",
|
|
"Ephesians 6:4",
|
|
"Deuteronomy 6:6-7",
|
|
"2 Timothy 3:15"
|
|
],
|
|
"content": "Biblical parenting centers upon deliberate spiritual training, not merely providing physical necessities or academic education. 'Train up a child in the way he should go: and when he is old, he will not depart from it.' Fathers (representing both parents), provoke not your children to wrath: but bring them up in the nurture and admonition of the Lord. These words which I command thee this day shall be in thine heart: And thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thine house, and when thou walkest by the way, and when thou liest down, and when thou risest up. From a child Timothy knew the holy scriptures, which were able to make him wise unto salvation through faith which is in Christ Jesus. Training implies intentional, consistent effort to shape character and instill truth. It is not passive hoping children turn out well but active cultivation of godliness. This training encompasses multiple elements: teaching Scripture and doctrine, modeling godly living, explaining God's ways in daily situations, correcting foolishness, establishing godly habits, providing appropriate responsibilities, and creating a home atmosphere that honors Christ. The Deuteronomy 6 principle indicates that training occurs constantly\u2014sitting, walking, lying down, rising up\u2014not merely in formal devotions. Parents must saturate home life with biblical truth, making God's Word central to daily conversation and decision-making. Training recognizes that children are born sinful, not innocent; bent toward folly, not naturally wise. Therefore, parents must actively counter indwelling sin, teaching self-control, honesty, respect, diligence, and love. This training prepares children not merely for earthly success but for eternal life and godly service."
|
|
},
|
|
{
|
|
"title": "Discipline and Instruction",
|
|
"verses": [
|
|
"Proverbs 13:24",
|
|
"Hebrews 12:5-11",
|
|
"Proverbs 29:15",
|
|
"Proverbs 23:13-14"
|
|
],
|
|
"content": "Biblical parenting includes loving discipline\u2014correcting, rebuking, and when appropriate, administering physical chastisement. 'He that spareth his rod hateth his son: but he that loveth him chasteneth him betimes.' The Lord's discipline of His children provides the pattern: 'My son, despise not thou the chastening of the Lord, nor faint when thou art rebuked of him: For whom the Lord loveth he chasteneth, and scourgeth every son whom he receiveth... No chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby.' The rod and reproof give wisdom: but a child left to himself bringeth his mother to shame. Withhold not correction from the child: for if thou beatest him with the rod, he shall not die. Thou shalt beat him with the rod, and shalt deliver his soul from hell. These passages, though countercultural, establish that loving parents discipline disobedience and foolishness. The 'rod' refers to physical chastisement (spanking), administered calmly, appropriately, and in love\u2014never in anger or excessively. Discipline must be: (1) consistent\u2014enforcing stated rules, not arbitrary; (2) appropriate\u2014fitting the offense and the child's age; (3) explained\u2014children should understand why discipline occurs; (4) loving\u2014administered for the child's good, not parental convenience; (5) followed by restoration\u2014discipline should end in reconciliation and affirmation. The goal is not to break the child's spirit but to break the will's rebellion against authority. Undisciplined children grow up lacking self-control, disrespecting authority, and unprepared for life's demands. Disciplined children learn that actions have consequences, that authority must be respected, and that God's ways lead to blessing."
|
|
},
|
|
{
|
|
"title": "Teaching God's Word",
|
|
"verses": [
|
|
"Deuteronomy 6:6-9",
|
|
"Psalm 78:4-7",
|
|
"2 Timothy 1:5",
|
|
"Proverbs 1:8"
|
|
],
|
|
"content": "Parents bear primary responsibility for their children's spiritual instruction\u2014teaching Scripture, doctrine, and God's ways faithfully and consistently. These words which I command thee this day shall be in thine heart, and thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thine house, and when thou walkest by the way, and when thou liest down, and when thou risest up. We will not hide them from their children, shewing to the generation to come the praises of the LORD, and his strength, and his wonderful works that he hath done, that they might set their hope in God, and not forget the works of God, but keep his commandments. Paul commends Timothy's genuine faith, which dwelt first in his grandmother Lois and his mother Eunice. My son, hear the instruction of thy father, and forsake not the law of thy mother. These passages establish that spiritual education belongs first to parents, not to church programs or Christian schools (though these support parental responsibility, they don't replace it). Parents must teach Scripture systematically, explain doctrine clearly, answer questions patiently, and apply truth to daily situations. This requires that parents themselves know God's Word\u2014you cannot teach what you don't know. Family worship, Scripture memory, catechism, bedtime Bible reading, discussing sermons, and addressing life situations biblically all contribute to teaching God's Word. The goal is not merely cognitive knowledge but heart transformation\u2014that children would set their hope in God, trust His promises, love His ways, and walk in obedience. Faithful teaching across generations preserves biblical faith and produces believers equipped to serve God and teach the next generation."
|
|
},
|
|
{
|
|
"title": "Modeling Faith",
|
|
"verses": [
|
|
"1 Corinthians 11:1",
|
|
"Philippians 4:9",
|
|
"1 Timothy 4:12",
|
|
"Joshua 24:15"
|
|
],
|
|
"content": "Children learn more from observing parents' lived faith than from formal instruction alone\u2014parents must model the godliness they teach. 'Be ye followers of me, even as I also am of Christ,' Paul tells the Corinthians\u2014not arrogance but recognition that example teaches powerfully. Those things, which ye have both learned, and received, and heard, and seen in me, do: and the God of peace shall be with you. Be thou an example of the believers, in word, in conversation, in charity, in spirit, in faith, in purity. Joshua declared, 'As for me and my house, we will serve the LORD,' demonstrating visible commitment. Hypocrisy\u2014demanding of children what parents don't practice\u2014destroys credibility and embitters children. If parents preach honesty but lie, demand respect but speak disrespectfully, command church attendance but manifest no love for worship, teach Scripture but show no delight in God's Word, children will see through the duplicity. Conversely, when parents model authentic faith\u2014praying genuinely, confessing sin humbly, trusting God in trials, loving others sacrificially, delighting in Scripture, worshipping wholeheartedly, serving joyfully\u2014children witness Christianity's reality and attractiveness. Modeling includes letting children see genuine faith struggling with real challenges: how believers handle disappointment, process grief, resolve conflicts, resist temptation, and trust God when circumstances are difficult. Parents need not pretend perfection but should demonstrate how Christians acknowledge sin, seek forgiveness, and grow in grace. Children who see faith modeled consistently are far more likely to embrace it themselves than those who receive only verbal instruction contradicted by parental example."
|
|
},
|
|
{
|
|
"title": "Prayer for Children",
|
|
"verses": [
|
|
"1 Samuel 1:27-28",
|
|
"Job 1:5",
|
|
"Colossians 1:9-12",
|
|
"Ephesians 3:14-19"
|
|
],
|
|
"content": "Faithful parents intercede persistently for their children's salvation, sanctification, and service. Hannah prayed earnestly for a child, and when God granted Samuel, she dedicated him to the Lord: 'For this child I prayed; and the LORD hath given me my petition which I asked of him: Therefore also I have lent him to the LORD; as long as he liveth he shall be lent to the LORD.' Job continually offered sacrifices for his children, fearing they might have sinned and cursed God in their hearts\u2014demonstrating parental intercession. Paul's prayers for believers model how parents might pray for children: 'We desire that ye might be filled with the knowledge of his will in all wisdom and spiritual understanding; that ye might walk worthy of the Lord unto all pleasing, being fruitful in every good work, and increasing in the knowledge of God; strengthened with all might, according to his glorious power, unto all patience and longsuffering with joyfulness.' He prays that believers might comprehend Christ's love and be filled with God's fullness. Parents should pray for children's salvation (that God would regenerate their hearts), sanctification (that they would grow in grace and knowledge), protection (from physical danger and spiritual deception), wisdom (to make godly choices), future spouses (if marriage is God's will), and calling (that they would discover and fulfill God's purpose). Prayer acknowledges that parents cannot save, sanctify, or direct children's hearts\u2014only God can. It expresses dependence upon divine grace and power. It provides comfort when children stray, for the same God who heard Hannah's prayer hears ours. Persistent, believing prayer for children is not optional but essential to faithful parenting."
|
|
},
|
|
{
|
|
"title": "Grace in Parenting",
|
|
"verses": [
|
|
"Ephesians 6:4",
|
|
"Colossians 3:21",
|
|
"Psalm 103:13-14",
|
|
"1 Thessalonians 2:7-12"
|
|
],
|
|
"content": "Biblical parenting balances faithful instruction and discipline with patience, understanding, and grace\u2014reflecting how God fathers His children. Fathers, provoke not your children to anger, lest they be discouraged. Fathers, provoke not your children to anger, lest they be discouraged. Like as a father pitieth his children, so the LORD pitieth them that fear him. For he knoweth our frame; he remembereth that we are dust. Paul's ministry combined nurture and exhortation: 'We were gentle among you, even as a nurse cherisheth her children... As ye know how we exhorted and comforted and charged every one of you, as a father doth his children, that ye would walk worthy of God.' Grace in parenting means: (1) Remembering your own struggles and sins as a child; (2) Recognizing children's immaturity and weakness; (3) Extending forgiveness readily when children repent; (4) Encouraging progress, not demanding perfection; (5) Balancing correction with affirmation; (6) Being patient with slow growth; (7) Avoiding unnecessary rules and focusing on heart issues; (8) Admitting when you as a parent fail and asking children's forgiveness. Graceless parenting becomes harsh legalism\u2014crushing spirits, demanding perfect obedience without patience, majoring on minors, and failing to affirm. Children raised under such harshness often rebel or develop false righteousness. Grace-filled parenting creates security, promotes genuine godliness, and reflects the Father who disciplines in love but never crushes the contrite. Parents should dispense both law (clear standards and discipline) and gospel (forgiveness and hope). We train children in righteousness while pointing them to the Savior who alone makes righteous. We discipline sin while extending the grace we ourselves have received. This grace doesn't eliminate standards but applies them with patience, wisdom, and love."
|
|
},
|
|
{
|
|
"title": "Launching Godly Adults",
|
|
"verses": [
|
|
"Genesis 2:24",
|
|
"Luke 2:52",
|
|
"Proverbs 31:1-9",
|
|
"1 Samuel 2:26"
|
|
],
|
|
"content": "The goal of biblical parenting is not to keep children dependent but to launch them as godly, mature adults who leave parents and establish their own households. 'Therefore shall a man leave his father and his mother, and shall cleave unto his wife'\u2014indicating that parenting aims toward independence and new family formation. Jesus increased in wisdom and stature, and in favour with God and man\u2014demonstrating balanced development. King Lemuel's mother taught him principles for righteous rule\u2014equipping him for adult responsibilities. Samuel grew in favour both with the LORD and also with men. Launching godly adults requires: (1) Teaching practical skills\u2014work, finances, cooking, home management; (2) Developing character\u2014integrity, diligence, self-control, perseverance; (3) Establishing biblical convictions\u2014doctrine, ethics, discernment; (4) Granting increasing freedom\u2014allowing age-appropriate decision-making; (5) Encouraging appropriate courtship and marriage when ready; (6) Supporting their transition to independence without controlling; (7) Maintaining relationship while respecting adult status. Parents must resist the temptation to keep children perpetually dependent or to micromanage adult children's decisions. The goal is that children internalize biblical principles and make wise choices from conviction, not merely external compliance with parental demands. Successfully launched young adults love God, know His Word, walk in wisdom, serve the church, maintain biblical convictions in hostile culture, fulfill vocational calling, and eventually raise godly children themselves. When parents see their children walking in truth, they experience profound joy\u2014the fruit of faithful parenting and God's gracious work. As arrows released from the bow, children should fly straight toward God-appointed targets, equipped by parents but empowered by the Spirit."
|
|
}
|
|
]
|
|
},
|
|
"money-stewardship": {
|
|
"title": "Money & Stewardship",
|
|
"description": "Biblical wisdom on finances",
|
|
"sections": [
|
|
{
|
|
"title": "God Owns Everything",
|
|
"verses": [
|
|
"Psalm 24:1",
|
|
"Haggai 2:8",
|
|
"1 Chronicles 29:11-12",
|
|
"Deuteronomy 8:17-18"
|
|
],
|
|
"content": "The foundational principle of biblical stewardship is that God owns everything\u2014we are merely managers of His resources. 'The earth is the LORD's, and the fulness thereof; the world, and they that dwell therein.' The silver is mine, and the gold is mine, saith the LORD of hosts. 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... Both riches and honour come of thee, and thou reignest over all; and in thine hand is power and might. Beware lest thou say in thine heart, My power and the might of mine hand hath gotten me this wealth. But thou shalt remember the LORD thy God: for it is he that giveth thee power to get wealth. This truth demolishes human pride and pretensions to ownership. We brought nothing into this world, and we shall carry nothing out. Every possession, every dollar, every opportunity comes from God's hand. We are stewards, not owners\u2014managers accountable to the Master for how we use His resources. This perspective transforms financial decisions: we don't ask 'What do I want to do with my money?' but 'What does God want me to do with His money?' It affects spending (Does this honor God?), saving (Am I hoarding or planning wisely?), giving (Am I returning to God what is His?), and earning (Am I using God-given abilities for His glory?). Recognizing God's ownership provides freedom from materialism's grip, for we hold possessions loosely, knowing they're not truly ours. It provides motivation for generosity, for we're distributing God's wealth, not our own. It provides accountability, for we will give account to Him for our stewardship."
|
|
},
|
|
{
|
|
"title": "Faithful Stewardship",
|
|
"verses": [
|
|
"Luke 16:10-12",
|
|
"1 Corinthians 4:2",
|
|
"Matthew 25:14-30",
|
|
"1 Peter 4:10"
|
|
],
|
|
"content": "God requires that stewards be found faithful\u2014managing His resources wisely, diligently, and for His glory. 'He that is faithful in that which is least is faithful also in much: and he that is unjust in the least is unjust also in much. If therefore ye have not been faithful in the unrighteous mammon, who will commit to your trust the true riches? And if ye have not been faithful in that which is another man's, who shall give you that which is your own?' It is required in stewards that a man be found faithful. The parable of the talents teaches that God distributes resources variously, expects diligent use, and will require accounting. As every man hath received the gift, even so minister the same one to another, as good stewards of the manifold grace of God. Faithful stewardship encompasses earning, spending, saving, giving, and investing. It means: (1) Working diligently at lawful employment, providing for family and avoiding idleness; (2) Spending wisely on necessary expenses without waste or extravagance; (3) Saving appropriately for future needs and emergencies; (4) Giving generously to God's work and those in need; (5) Avoiding debt that enslaves; (6) Investing resources to produce increase; (7) Planning long-term rather than living merely for today; (8) Using material resources to advance God's kingdom. The unfaithful servant who buried his talent represents those who waste opportunities or hoard resources selfishly. The faithful servants who multiplied their talents demonstrate diligent use producing increase. God measures faithfulness not by absolute amounts but by diligent use of what we've received. The one-talent servant should have produced proportionate return. Faithful stewardship recognizes that we will give account for every resource entrusted to us."
|
|
},
|
|
{
|
|
"title": "Tithing and Giving",
|
|
"verses": [
|
|
"Malachi 3:8-10",
|
|
"2 Corinthians 9:6-7",
|
|
"Luke 6:38",
|
|
"Proverbs 3:9-10"
|
|
],
|
|
"content": "Scripture establishes tithing (giving a tenth) as the baseline for giving and encourages generous offerings beyond the tithe. 'Will a man rob God? Yet ye have robbed me. But ye say, Wherein have we robbed thee? In tithes and offerings. 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.' He which soweth sparingly shall reap also sparingly; and he which soweth bountifully shall reap also bountifully. Every man according as he purposeth in his heart, so let him give; not grudgingly, or of necessity: for God loveth a cheerful giver. Give, and it shall be given unto you; good measure, pressed down, and shaken together, and running over. Honour the LORD with thy substance, and with the firstfruits of all thine increase: So shall thy barns be filled with plenty, and thy presses shall burst out with new wine. While some debate whether the tithe applies under the new covenant, the principle of proportionate giving from firstfruits remains clear. New Testament believers should give at least as generously as Old Testament saints under law. Giving should be: (1) Proportionate\u2014according to income; (2) Systematic\u2014regularly, not sporadically; (3) Prioritized\u2014firstfruits, not leftovers; (4) Cheerful\u2014joyfully, not grudgingly; (5) Generous\u2014beyond minimum requirements; (6) Faith-filled\u2014trusting God's provision. Giving blesses both giver and recipient, supports gospel ministry, helps the needy, and demonstrates trust in God's provision. Those who give generously discover that God cannot be outgiven."
|
|
},
|
|
{
|
|
"title": "Contentment",
|
|
"verses": [
|
|
"1 Timothy 6:6-8",
|
|
"Hebrews 13:5",
|
|
"Philippians 4:11-13",
|
|
"Proverbs 30:8-9"
|
|
],
|
|
"content": "Godliness with contentment is great gain\u2014finding satisfaction in God's provision rather than constantly craving more. 'Having food and raiment let us be therewith content. For we brought nothing into this world, and it is certain we can carry nothing out.' Let your conversation be without covetousness; and be content with such things as ye have: for he hath said, I will never leave thee, nor forsake thee. I have learned, in whatsoever state I am, therewith to be content. I know both how to be abased, and I know how to abound: every where and in all things I am instructed both to be full and to be hungry, both to abound and to suffer need. I can do all things through Christ which strengtheneth me. Give me neither poverty nor riches; feed me with food convenient for me: Lest I be full, and deny thee, and say, Who is the LORD? or lest I be poor, and steal, and take the name of my God in vain. Contentment is learned through spiritual discipline, not natural inclination. It requires: (1) Gratitude\u2014recognizing and thanking God for present blessings; (2) Eternal perspective\u2014valuing spiritual riches above material wealth; (3) Trust\u2014believing God provides what we need; (4) Simplicity\u2014distinguishing needs from wants; (5) Generosity\u2014finding joy in giving rather than accumulating. Discontent breeds covetousness, envy, and constant dissatisfaction. The advertising industry thrives on manufacturing discontent, convincing us we need what we lack. Contentment frees from materialism's tyranny, provides peace regardless of circumstances, and demonstrates trust in God's wisdom and provision. Paul's secret\u2014doing all things through Christ's strength\u2014indicates contentment is supernatural, wrought by the Spirit, not mere stoicism."
|
|
},
|
|
{
|
|
"title": "Avoiding Debt",
|
|
"verses": [
|
|
"Proverbs 22:7",
|
|
"Romans 13:8",
|
|
"Proverbs 22:26-27",
|
|
"Psalm 37:21"
|
|
],
|
|
"content": "Scripture warns strongly against debt, which creates bondage, limits freedom, and presumes upon the future. 'The rich ruleth over the poor, and the borrower is servant to the lender.' Owe no man any thing, but to love one another: for he that loveth another hath fulfilled the law. Be not thou one of them that strike hands, or of them that are sureties for debts. If thou hast nothing to pay, why should he take away thy bed from under thee? The wicked borroweth, and payeth not again: but the righteous sheweth mercy, and giveth. While Scripture doesn't absolutely forbid all debt, it clearly depicts it as dangerous and undesirable. Debt enslaves\u2014the borrower becomes servant to the lender, losing freedom to make decisions, change employment, or respond to God's leading. Debt presumes upon tomorrow, assuming future income that may not materialize (James 4:13-15). Debt often results from impatience (unwillingness to save) or covetousness (wanting what we cannot afford). Debt can become sin when we borrow without intention or ability to repay, when we borrow for unwise purposes, or when debt prevents fulfilling other obligations (supporting family, giving to God's work). The path to financial freedom requires: (1) Avoiding new debt; (2) Eliminating existing debt systematically; (3) Living within means; (4) Saving for purchases rather than borrowing; (5) Planning for emergencies so debt isn't necessary. Exceptions might include home mortgages (if affordable and necessary) or business investments (if calculated and reasonable). Credit card debt, consumer debt for depreciating items, and borrowing for lifestyle beyond income are particularly foolish. Freedom from debt provides peace, flexibility, and ability to give generously."
|
|
},
|
|
{
|
|
"title": "Saving and Planning",
|
|
"verses": [
|
|
"Proverbs 21:5",
|
|
"Proverbs 6:6-8",
|
|
"Proverbs 13:11",
|
|
"Luke 14:28-30"
|
|
],
|
|
"content": "Biblical wisdom commends prudent planning and disciplined saving for future needs. 'The thoughts of the diligent tend only to plenteousness; but of every one that is hasty only to want.' Go to the ant, thou sluggard; consider her ways, and be wise: which having no guide, overseer, or ruler, provideth her meat in the summer, and gathereth her food in the harvest. Wealth gotten by vanity shall be diminished: but he that gathereth by labour shall increase. Which of you, intending to build a tower, sitteth not down first, and counteth the cost, whether he have sufficient to finish it? Lest haply, after he hath laid the foundation, and is not able to finish it, all that behold it begin to mock him. These proverbs commend the ant's industrious preparation, the wisdom of counting costs before beginning projects, and the steady accumulation of wealth through diligent labor. Saving demonstrates: (1) Diligence\u2014working and setting aside rather than consuming all; (2) Prudence\u2014preparing for emergencies and known future expenses; (3) Self-control\u2014delaying gratification; (4) Responsibility\u2014providing for family needs; (5) Generosity\u2014having resources to give when opportunities arise. Saving differs from hoarding\u2014the latter involves greed and distrust, while the former involves wisdom and provision. Joseph's storing grain during plenty to prepare for famine exemplifies wise planning. Believers should maintain emergency funds (typically 3-6 months expenses), save for known future needs (home maintenance, vehicle replacement, children's education), and plan for retirement (1 Timothy 5:8 requires providing for family, including not burdening them in old age). Planning and saving must be balanced with trust in God\u2014we plan wisely while acknowledging that God directs our steps and provides our needs."
|
|
},
|
|
{
|
|
"title": "Work and Provision",
|
|
"verses": [
|
|
"2 Thessalonians 3:10-12",
|
|
"1 Timothy 5:8",
|
|
"Proverbs 10:4",
|
|
"Ephesians 4:28"
|
|
],
|
|
"content": "God ordained work as the primary means of provision, and Scripture commands diligent labor while condemning idleness. 'If any would not work, neither should he eat. For we hear that there are some which walk among you disorderly, working not at all, but are busybodies. Now them that are such we command and exhort by our Lord Jesus Christ, that with quietness they work, and eat their own bread.' If any provide not for his own, and specially for those of his own house, he hath denied the faith, and is worse than an infidel. He becometh poor that dealeth with a slack hand: but the hand of the diligent maketh rich. Let him that stole steal no more: but rather let him labour, working with his hands the thing which is good, that he may have to give to him that needeth. Work predates the fall (Adam tended Eden) but became toilsome after sin entered. Still, work remains God's appointed means of provision and an arena for glorifying Him. Biblical principles for work include: (1) Diligence\u2014working heartily, not lazily; (2) Honesty\u2014fair dealing, not theft or deception; (3) Excellence\u2014doing quality work as unto the Lord; (4) Purpose\u2014working to provide for family and enable giving, not merely for self-gratification; (5) Balance\u2014working diligently without becoming workaholic; (6) Submission\u2014honoring employers as God's appointed authorities; (7) Witness\u2014demonstrating Christian character in workplace. Refusing to work while able is sin, burdening others unnecessarily. Parents who fail to provide for families deny the faith. The diligent worker prospers; the sluggard comes to poverty. Yet work must not become idolatry\u2014our ultimate security and provision come from God, not employment. We work as God's stewards, using vocational abilities for His glory and others' good."
|
|
},
|
|
{
|
|
"title": "Eternal Perspective on Wealth",
|
|
"verses": [
|
|
"Matthew 6:19-21",
|
|
"1 Timothy 6:17-19",
|
|
"Luke 12:15-21",
|
|
"James 5:1-3"
|
|
],
|
|
"content": "Jesus commands laying up treasures in heaven rather than on earth, where moth, rust, and thieves destroy. 'For where your treasure is, there will your heart be also.' Charge them that are rich in this world, that they be not highminded, nor trust in uncertain riches, but in the living God, who giveth us richly all things to enjoy; that they do good, that they be rich in good works, ready to distribute, willing to communicate; laying up in store for themselves a good foundation against the time to come, that they may lay hold on eternal life. Jesus' parable of the rich fool who accumulated wealth but died unprepared warns: 'Take heed, and beware of covetousness: for a man's life consisteth not in the abundance of the things which he possesseth.' James warns that hoarded wealth will testify against those who neglected eternal investment. An eternal perspective recognizes: (1) Material wealth is temporary\u2014we leave it all behind; (2) Spiritual riches are eternal\u2014laying up treasures in heaven; (3) Money is a tool, not a treasure\u2014a means to serve God and others; (4) Generosity produces eternal dividends\u2014investment in souls and kingdom work; (5) Contentment with godliness is greater gain than riches with restlessness; (6) We will give account for our stewardship. This perspective frees believers from materialism's deception, motivates strategic generosity, and produces investment in what lasts. Rather than asking 'How much of my money should I give to God?' we should ask 'How much of God's money may I keep for my needs?' The eternal perspective transforms financial decisions, spending priorities, and life goals. We cannot serve both God and mammon; we must choose our master. Those who choose God find that He provides abundantly\u2014not necessarily wealth, but sufficiency, contentment, and eternal riches."
|
|
}
|
|
]
|
|
},
|
|
"sovereignty-of-god": {
|
|
"title": "The Sovereignty of God",
|
|
"description": "God's absolute rule over all things",
|
|
"sections": [
|
|
{
|
|
"title": "God's Eternal Decree",
|
|
"verses": [
|
|
"Isaiah 46:9-10",
|
|
"Ephesians 1:11",
|
|
"Acts 2:23",
|
|
"Proverbs 16:33"
|
|
],
|
|
"content": "God has eternally decreed whatsoever comes to pass\u2014not merely foreseeing but foreordaining all things according to the counsel of His will. 'I am God, and there is none like me, declaring the end from the beginning, and from ancient times the things that are not yet done, saying, My counsel shall stand, and I will do all my pleasure.' He works all things after the counsel of His own will. Christ was delivered by the determinate counsel and foreknowledge of God, demonstrating that even the greatest evil served divine purposes. The lot is cast into the lap, but the whole disposing thereof is of the LORD\u2014nothing is random or outside God's control. This decree includes all events great and small, good and evil (though God is never the author of sin), extending to salvation (election), history (providence), and the smallest details of creation. Understanding God's decree provides comfort: nothing happens by chance; all things serve God's purposes. It promotes humility: we are creatures dependent upon the Creator's will. It encourages trust: the same God who ordained events will work them for His glory and our good."
|
|
},
|
|
{
|
|
"title": "Sovereignty Over Nature",
|
|
"verses": [
|
|
"Psalm 135:6-7",
|
|
"Job 37:6-13",
|
|
"Colossians 1:17",
|
|
"Matthew 10:29"
|
|
],
|
|
"content": "God exercises absolute sovereignty over the natural world\u2014weather, animals, and all physical phenomena obey His command. 'Whatsoever the LORD pleased, that did he in heaven, and in earth, in the seas, and all deep places. He causeth the vapours to ascend from the ends of the earth; he maketh lightnings for the rain; he bringeth the wind out of his treasuries.' He says to the snow, Be thou on the earth; likewise to the small rain and great rain. By Christ all things consist (hold together)\u2014the universe continues moment by moment only by His sustaining power. Not one sparrow falls to the ground without your Father's knowledge. There are no 'natural laws' operating independently of God; what we call laws of nature are simply God's regular ways of working. Storms, earthquakes, droughts, and floods all serve His purposes. He opens His hand and satisfies the desire of every living thing. This truth teaches us that nature worship is idolatry\u2014creation points to the Creator. It teaches that 'accidents' do not exist\u2014God governs all events. It provides comfort in natural disasters\u2014God remains sovereign even in catastrophe. We may not understand His purposes, but we can trust His character."
|
|
},
|
|
{
|
|
"title": "Sovereignty Over Nations",
|
|
"verses": [
|
|
"Daniel 4:35",
|
|
"Proverbs 21:1",
|
|
"Acts 17:26",
|
|
"Psalm 22:28"
|
|
],
|
|
"content": "God raises up and brings down nations according to His sovereign purposes\u2014no political power operates outside His control. Nebuchadnezzar learned this humbling truth: '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?' The king's heart is in the hand of the LORD, as the rivers of water: he turneth it whithersoever he will. God hath determined the times before appointed and the bounds of nations' habitation. The kingdom is the LORD's: and he is the governor among the nations. Pharaoh, Cyrus, Nebuchadnezzar, Caesar\u2014all served God's purposes, whether knowingly or unknowingly, willingly or unwillingly. God uses nations to accomplish redemptive history: Egypt for Israel's formation, Assyria and Babylon for judgment, Persia for restoration, Rome for Christ's advent. This truth provides perspective on political turmoil\u2014God remains on His throne. It prevents despair over corrupt governments\u2014they too shall pass. It warns against nationalism\u2014nations serve God, not vice versa. It encourages prayer for rulers, knowing God can turn hearts."
|
|
},
|
|
{
|
|
"title": "Sovereignty Over Salvation",
|
|
"verses": [
|
|
"John 6:37-39",
|
|
"Romans 9:15-16",
|
|
"Ephesians 1:4-5",
|
|
"2 Timothy 1:9"
|
|
],
|
|
"content": "God's sovereignty extends supremely to salvation\u2014He chooses whom He will save, not based on foreseen faith or merit but according to His own good pleasure. 'All that the Father giveth me shall come to me; and him that cometh to me I will in no wise cast out... And this is the Father's will which hath sent me, that of all which he hath given me I should lose nothing.' He saith to Moses, I will have mercy on whom I will have mercy, and I will have compassion on whom I will have compassion. So then it is not of him that willeth, nor of him that runneth, but of God that sheweth mercy. He hath chosen us in Him before the foundation of the world, having predestinated us unto the adoption of children according to the good pleasure of His will. God saved us and called us with a holy calling, not according to our works, but according to His own purpose and grace, given us in Christ Jesus before the world began. Election is unconditional\u2014not based on anything in us. It is gracious\u2014we deserve wrath, not mercy. It is effectual\u2014those chosen will certainly be saved. It is humbling\u2014we contribute nothing to our salvation. It is comforting\u2014our security rests on God's purpose, not our performance."
|
|
},
|
|
{
|
|
"title": "Sovereignty and Human Responsibility",
|
|
"verses": [
|
|
"Philippians 2:12-13",
|
|
"Acts 2:23",
|
|
"Genesis 50:20",
|
|
"Luke 22:22"
|
|
],
|
|
"content": "Divine sovereignty and human responsibility are both biblical truths that must be held together, even when our finite minds cannot fully reconcile them. 'Work out your own salvation with fear and trembling. For it is God which worketh in you both to will and to do of his good pleasure.' Christ was delivered by the determinate counsel and foreknowledge of God, yet taken by wicked hands and crucified\u2014God's decree and human guilt coexist. Joseph told his brothers, 'Ye thought evil against me; but God meant it unto good'\u2014the same act was simultaneously human sin and divine providence. The Son of man goes as it was determined, but woe unto that man by whom He is betrayed\u2014Judas was both fulfilling prophecy and committing culpable sin. Scripture never uses sovereignty to excuse sin or eliminate responsibility. God's decree establishes certainty without eliminating human agency. We are not puppets but genuine moral agents whose choices matter, even while God's purposes are always accomplished. This mystery should produce worship, not speculation. We preach the gospel to all, knowing God will save His elect. We pray earnestly, knowing God ordains both ends and means. We obey diligently, knowing God works in us to will and do."
|
|
},
|
|
{
|
|
"title": "Comfort in God's Sovereignty",
|
|
"verses": [
|
|
"Romans 8:28",
|
|
"Isaiah 14:27",
|
|
"Lamentations 3:37-38",
|
|
"Psalm 115:3"
|
|
],
|
|
"content": "God's sovereignty, rightly understood, is the believer's greatest comfort in a world of suffering, chaos, and apparent randomness. 'We know that all things work together for good to them that love God, to them who are the called according to his purpose.' The LORD of hosts hath purposed, and who shall disannul it? His hand is stretched out, and who shall turn it back? Who is he that saith, and it cometh to pass, when the Lord commandeth it not? Out of the mouth of the most High proceedeth not evil and good? Our God is in the heavens: he hath done whatsoever he hath pleased. Whatever befalls us\u2014sickness, loss, persecution, death\u2014comes only by God's permission and serves His purposes. Nothing can thwart His plans or separate us from His love. The same sovereignty that elected us to salvation governs every circumstance of our lives. We need not fear men who can only kill the body; we need not fear circumstances that are all under divine control. This truth does not make us passive but active\u2014we work because God works, pray because God ordains means, and trust because God is trustworthy. Sovereignty is not fatalism but faith\u2014resting in a God who is too wise to err and too good to be unkind."
|
|
}
|
|
]
|
|
},
|
|
"attributes-of-god": {
|
|
"title": "The Attributes of God",
|
|
"description": "The perfections of the divine nature",
|
|
"sections": [
|
|
{
|
|
"title": "God's Self-Existence and Eternality",
|
|
"verses": [
|
|
"Exodus 3:14",
|
|
"Psalm 90:2",
|
|
"Isaiah 40:28",
|
|
"Revelation 1:8"
|
|
],
|
|
"content": "God alone exists of Himself, uncaused and self-sufficient, the source of all other existence. When Moses asked God's name, He replied, 'I AM THAT I AM'\u2014the self-existent One who depends on nothing outside Himself. Before the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God. The everlasting God, the LORD, the Creator of the ends of the earth, fainteth not, neither is weary. '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.' God has no beginning, no ending, no succession of moments\u2014He inhabits eternity, seeing all time as an eternal present. He does not grow, develop, or change. All creation depends on Him; He depends on nothing. This truth humbles us\u2014we are contingent beings, existing only because God sustains us moment by moment. It provides stability\u2014our unchanging God is the same yesterday, today, and forever. It offers hope\u2014the eternal God will never fail, never tire, never cease to be."
|
|
},
|
|
{
|
|
"title": "God's Omniscience and Wisdom",
|
|
"verses": [
|
|
"Psalm 147:5",
|
|
"Isaiah 46:10",
|
|
"Romans 11:33-34",
|
|
"Hebrews 4:13"
|
|
],
|
|
"content": "God possesses infinite knowledge\u2014knowing all things actual and possible, past, present, and future, including the thoughts and intents of every heart. 'Great is our Lord, and of great power: his understanding is infinite.' He declares the end from the beginning, and from ancient times things not yet done. O the depth of the riches both of the wisdom and knowledge of God! How unsearchable are his judgments, and his ways past finding out! For who hath known the mind of the Lord? Neither is there any creature that is not manifest in his sight: but all things are naked and opened unto the eyes of him with whom we have to do. God never learns, never discovers, never is surprised. His knowledge is intuitive, not acquired; complete, not partial; certain, not probable. His wisdom perfectly applies His knowledge to accomplish His purposes by the best possible means. This truth warns us\u2014nothing is hidden from God; all will be revealed. It comforts us\u2014God knows our needs before we ask, our sorrows before we weep, our situations completely. It humbles us\u2014His thoughts are higher than our thoughts; we cannot comprehend His ways but can trust His wisdom."
|
|
},
|
|
{
|
|
"title": "God's Omnipotence",
|
|
"verses": [
|
|
"Genesis 18:14",
|
|
"Jeremiah 32:17",
|
|
"Matthew 19:26",
|
|
"Revelation 19:6"
|
|
],
|
|
"content": "God is almighty\u2014possessing infinite power to accomplish whatever He wills, with nothing too hard for Him. 'Is any thing too hard for the LORD?' Ah Lord GOD! behold, thou hast made the heaven and the earth by thy great power and stretched out arm, and there is nothing too hard for thee. With God all things are possible. Alleluia: for the Lord God omnipotent reigneth. God's power is unlimited in extent\u2014He created all things from nothing by His word. It is unlimited in duration\u2014He never grows weary or faint. It is unlimited in application\u2014no purpose of His can be thwarted. Yet God's power operates according to His nature; He cannot lie, cannot deny Himself, cannot be tempted with evil. His power serves His wisdom and love. This truth encourages prayer\u2014we ask an almighty God who can do exceeding abundantly above all we ask or think. It strengthens faith\u2014the same power that raised Christ from the dead works in us. It promotes worship\u2014our God is the Creator, Sustainer, and Ruler of all things."
|
|
},
|
|
{
|
|
"title": "God's Holiness",
|
|
"verses": [
|
|
"Isaiah 6:3",
|
|
"Revelation 4:8",
|
|
"1 Peter 1:15-16",
|
|
"Habakkuk 1:13"
|
|
],
|
|
"content": "Holiness is God's central attribute\u2014His absolute purity, moral perfection, and infinite separation from all evil. The seraphim cry, 'Holy, holy, holy, is the LORD of hosts: the whole earth is full of his glory.' The four living creatures rest not day and night, saying, 'Holy, holy, holy, Lord God Almighty, which was, and is, and is to come.' As He which hath called you is holy, so be ye holy in all manner of conversation; because it is written, Be ye holy; for I am holy. Thou art of purer eyes than to behold evil, and canst not look on iniquity. God's holiness is not merely the absence of evil but the infinite presence of moral beauty and perfection. It is the attribute that qualifies all others\u2014His love is holy love, His wrath is holy wrath, His justice is holy justice. This holiness both attracts (Isaiah fell at His feet in worship) and terrifies (Isaiah cried 'Woe is me!'). It demands our holiness\u2014we are called to be holy as He is holy. It necessitates atonement\u2014only Christ's sacrifice can bridge the infinite gap between holy God and sinful humanity."
|
|
},
|
|
{
|
|
"title": "God's Justice and Wrath",
|
|
"verses": [
|
|
"Psalm 89:14",
|
|
"Romans 2:5-6",
|
|
"Nahum 1:2-3",
|
|
"Deuteronomy 32:4"
|
|
],
|
|
"content": "God is perfectly just\u2014rendering to all their due, punishing sin, and rewarding righteousness without partiality or error. Justice and judgment are the habitation of His throne. God will render to every man according to his deeds\u2014there is no respect of persons with God. God is jealous, and the LORD revengeth; the LORD revengeth, and is furious; the LORD will take vengeance on his adversaries. He is the Rock, his work is perfect: for all his ways are judgment: a God of truth and without iniquity, just and right is he. God's wrath is not capricious rage but holy indignation against sin\u2014the necessary response of infinite holiness to moral evil. His justice is not cruel severity but perfect righteousness. The cross displays both: God's justice demanded sin's punishment; God's love provided the substitute. At Calvary, mercy and truth met together; righteousness and peace kissed each other. Understanding God's justice produces holy fear\u2014sin will be punished. It produces gratitude\u2014Christ bore the wrath we deserved. It produces confidence\u2014God will ultimately right every wrong."
|
|
},
|
|
{
|
|
"title": "God's Love and Mercy",
|
|
"verses": [
|
|
"1 John 4:8",
|
|
"Exodus 34:6-7",
|
|
"Ephesians 2:4-5",
|
|
"Lamentations 3:22-23"
|
|
],
|
|
"content": "God is love\u2014not merely loving, but love in His very essence, the source and standard of all true love. 'He that loveth not knoweth not God; for God is love.' The LORD passed before Moses and proclaimed, 'The LORD, The LORD God, merciful and gracious, longsuffering, and abundant in goodness and truth, keeping mercy for thousands, forgiving iniquity and transgression and sin.' God, who is rich in mercy, for his great love wherewith he loved us, even when we were dead in sins, hath quickened us together with Christ. 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. God's love is eternal\u2014He loved us before the foundation of the world. It is unconditional\u2014not based on our worthiness. It is sacrificial\u2014demonstrated supremely in Christ's death. It is effectual\u2014accomplishing our salvation. His mercy is His love toward the miserable; His grace is His love toward the undeserving. This love provides assurance\u2014nothing can separate us from it. It motivates obedience\u2014we love Him because He first loved us. It compels worship\u2014such love deserves our all."
|
|
},
|
|
{
|
|
"title": "God's Immutability and Faithfulness",
|
|
"verses": [
|
|
"Malachi 3:6",
|
|
"James 1:17",
|
|
"Numbers 23:19",
|
|
"2 Timothy 2:13"
|
|
],
|
|
"content": "God is unchangeable in His being, perfections, purposes, and promises\u2014the same yesterday, today, and forever. 'I am the LORD, I change not; therefore ye sons of Jacob are not consumed.' Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning. 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? If we believe not, yet he abideth faithful: he cannot deny himself. God does not grow, improve, decay, or develop\u2014He is eternally the same in all His perfections. His purposes, established in eternity, will certainly be accomplished. His promises, made to His people, will never fail. This immutability grounds our hope\u2014the God who saved us will keep us. It establishes assurance\u2014His love will not waver, His commitment will not weaken. It demands consistency\u2014we should reflect His faithfulness in our own commitments. The unchanging God is our rock in a world of constant flux and disappointment."
|
|
}
|
|
]
|
|
},
|
|
"doctrine-of-scripture": {
|
|
"title": "The Doctrine of Scripture",
|
|
"description": "The inspiration, authority, and sufficiency of God's Word",
|
|
"sections": [
|
|
{
|
|
"title": "Divine Inspiration",
|
|
"verses": [
|
|
"2 Timothy 3:16-17",
|
|
"2 Peter 1:20-21",
|
|
"1 Corinthians 2:13",
|
|
"Jeremiah 1:9"
|
|
],
|
|
"content": "Scripture is God-breathed\u2014not merely human reflection on spiritual matters but the very words of God communicated through human authors. '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.' 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. The Holy Spirit so superintended the biblical writers that, using their own personalities, backgrounds, and styles, they wrote exactly what God intended\u2014without error in the original manuscripts. This inspiration extends to every word (verbal), covering all subjects addressed (plenary). Scripture is therefore not merely a record of revelation but is itself revelation. What Scripture says, God says. To disbelieve Scripture is to disbelieve God; to obey Scripture is to obey God."
|
|
},
|
|
{
|
|
"title": "Inerrancy and Infallibility",
|
|
"verses": [
|
|
"Psalm 19:7",
|
|
"Proverbs 30:5-6",
|
|
"John 10:35",
|
|
"Matthew 5:18"
|
|
],
|
|
"content": "Because Scripture is God-breathed and God cannot lie, the Bible is without error in all it affirms\u2014inerrant in its original manuscripts and infallible in its purposes. 'The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.' Every word of God is pure: he is a shield unto them that put their trust in him. Add thou not unto his words, lest he reprove thee, and thou be found a liar. Jesus declared, 'The scripture cannot be broken.' Till heaven and earth pass, one jot or one tittle shall in no wise pass from the law. Inerrancy means Scripture speaks truth in everything it addresses\u2014history, science, geography, theology. It does not mean using modern scientific language or addressing every question we might ask. Infallibility means Scripture will accomplish God's purposes without fail. These doctrines are not imposed on Scripture but derived from Scripture's self-testimony and its divine origin. A God who cannot lie produced a Word that cannot err. To deny inerrancy is ultimately to question God's character and Christ's authority, for He affirmed Scripture's complete trustworthiness."
|
|
},
|
|
{
|
|
"title": "Authority of Scripture",
|
|
"verses": [
|
|
"Isaiah 8:20",
|
|
"Matthew 4:4",
|
|
"Acts 17:11",
|
|
"Psalm 119:89"
|
|
],
|
|
"content": "Scripture possesses supreme authority over all matters of faith and practice\u2014the final court of appeal for what we believe and how we live. 'To the law and to the testimony: if they speak not according to this word, it is because there is no light in them.' Jesus rebuked Satan with 'It is written,' making Scripture the decisive authority. The Bereans were commended because they 'searched the scriptures daily, whether those things were so'\u2014testing even apostolic teaching by Scripture. For ever, O LORD, thy word is settled in heaven. Scripture's authority derives from its divine origin\u2014God has spoken, and His Word carries His authority. This authority is self-attesting\u2014Scripture does not need external validation but validates itself to the regenerate heart through the Spirit's testimony. It is supreme\u2014standing above church tradition, human reason, personal experience, and cultural consensus. No pope, council, creed, or experience can override what God has said. The Reformation principle of sola Scriptura\u2014Scripture alone as the ultimate authority\u2014remains essential for faithful Christianity."
|
|
},
|
|
{
|
|
"title": "Sufficiency of Scripture",
|
|
"verses": [
|
|
"2 Timothy 3:16-17",
|
|
"Deuteronomy 29:29",
|
|
"2 Peter 1:3",
|
|
"Psalm 19:7-11"
|
|
],
|
|
"content": "Scripture contains everything necessary for knowing God, understanding salvation, and living godly lives\u2014we need no additional revelation. The man of God is 'perfect, throughly furnished unto all good works' through Scripture. The secret things belong unto the LORD our God: but those things which are revealed belong unto us and to our children for ever\u2014God has revealed what we need to know. His divine power hath given unto us all things that pertain unto life and godliness. The law of the LORD is perfect, converting the soul; the testimony of the LORD is sure, making wise the simple; the statutes of the LORD are right, rejoicing the heart. Scripture does not address every question we might ask but provides principles sufficient for every situation. We need no new prophecies, visions, or revelations to know God's will. The sufficiency of Scripture protects against adding human traditions as binding requirements and against seeking extra-biblical guidance through subjective impressions. It directs us to mine the depths of what God has revealed rather than seeking what He has not disclosed."
|
|
},
|
|
{
|
|
"title": "Clarity of Scripture",
|
|
"verses": [
|
|
"Psalm 119:105",
|
|
"Psalm 119:130",
|
|
"Deuteronomy 30:11-14",
|
|
"2 Timothy 3:15"
|
|
],
|
|
"content": "Scripture's essential message is clear to ordinary readers who approach it seeking to understand and obey\u2014perspicuity does not require scholarly expertise. 'Thy word is a lamp unto my feet, and a light unto my path.' The entrance of thy words giveth light; it giveth understanding unto the simple. This commandment which I command thee this day, it is not hidden from thee, neither is it far off... the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it. Timothy knew the holy scriptures from childhood\u2014Scripture is accessible to children, not only scholars. Clarity does not mean every passage is equally easy to understand\u2014Peter acknowledged that Paul wrote some things hard to understand. It means that the central message of salvation through Christ, the basic requirements of godly living, and the essential doctrines of the faith are sufficiently clear for anyone who reads with humble dependence on the Spirit. This clarity liberates believers to read Scripture for themselves, not depending on priestly intermediaries to interpret for them."
|
|
},
|
|
{
|
|
"title": "Studying Scripture Rightly",
|
|
"verses": [
|
|
"2 Timothy 2:15",
|
|
"Nehemiah 8:8",
|
|
"Acts 8:30-31",
|
|
"Psalm 119:18"
|
|
],
|
|
"content": "While Scripture is clear, diligent study is required to rightly understand and apply God's Word. 'Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly dividing the word of truth.' Ezra and the Levites 'read in the book in the law of God distinctly, and gave the sense, and caused them to understand the reading.' The Ethiopian eunuch needed Philip's help: 'Understandest thou what thou readest? How can I, except some man should guide me?' Open thou mine eyes, that I may behold wondrous things out of thy law. Right interpretation requires: (1) Prayer\u2014asking the Spirit to illuminate; (2) Careful reading\u2014observing what the text actually says; (3) Context\u2014understanding verses within their immediate and broader context; (4) Historical background\u2014knowing the original setting; (5) Grammatical analysis\u2014attending to words, grammar, and genre; (6) Comparing Scripture with Scripture\u2014using clearer passages to interpret less clear; (7) Application\u2014moving from understanding to obedience. The goal is not mere knowledge but transformation\u2014that we might be doers of the Word, not hearers only."
|
|
}
|
|
]
|
|
},
|
|
"problem-of-evil": {
|
|
"title": "The Problem of Evil",
|
|
"description": "God's purposes in suffering and affliction",
|
|
"sections": [
|
|
{
|
|
"title": "The Reality of Evil and Suffering",
|
|
"verses": [
|
|
"Genesis 3:16-19",
|
|
"Romans 8:20-22",
|
|
"John 16:33",
|
|
"1 Peter 4:12"
|
|
],
|
|
"content": "Scripture acknowledges the brutal reality of evil and suffering\u2014it does not minimize pain or offer simplistic answers. After the fall, God pronounced curses affecting all creation: pain in childbirth, toil in work, thorns and thistles, and ultimately death. The creature was made subject to vanity, not willingly, but by reason of him who hath subjected the same; the whole creation groaneth and travaileth in pain together until now. Jesus warned His disciples, 'In the world ye shall have tribulation.' Think it not strange concerning the fiery trial which is to try you, as though some strange thing happened unto you. The Bible is honest about suffering\u2014Job's anguish, David's grief, Jeremiah's tears, Paul's thorn. It records murder, betrayal, disease, disaster, persecution, and death. The prosperity gospel is false; the health-and-wealth message contradicts Scripture. Believers suffer, often intensely, sometimes inexplicably. This honesty validates our own suffering and prevents false guilt when trials come. Christianity does not promise escape from suffering but offers resources for enduring it and hope beyond it."
|
|
},
|
|
{
|
|
"title": "God's Sovereignty Over Evil",
|
|
"verses": [
|
|
"Isaiah 45:7",
|
|
"Amos 3:6",
|
|
"Lamentations 3:38",
|
|
"Job 1:21"
|
|
],
|
|
"content": "Scripture teaches that God sovereignly governs even evil events, using them for His purposes while never being their author or approver. 'I form the light, and create darkness: I make peace, and create evil: I the LORD do all these things.' Shall there be evil in a city, and the LORD hath not done it? Out of the mouth of the most High proceedeth not evil and good? Job, having lost everything, declared, 'The LORD gave, and the LORD hath taken away; blessed be the name of the LORD.' These difficult texts affirm that nothing occurs outside God's sovereign control\u2014even disasters and calamities serve His purposes. Yet God is not the author of sin; He does not tempt anyone, and His nature is wholly good. The mystery of how God ordains events involving human evil without being culpable for that evil transcends our understanding. Joseph's brothers meant evil; God meant it for good\u2014both are true. Jesus was crucified by wicked hands, yet delivered by God's determinate counsel. This truth comforts: our suffering is not meaningless chaos but serves divine purposes. It also warns: God will judge those who do evil, even while using their evil for His ends."
|
|
},
|
|
{
|
|
"title": "Purposes in Suffering",
|
|
"verses": [
|
|
"Romans 8:28-29",
|
|
"James 1:2-4",
|
|
"Hebrews 12:10-11",
|
|
"2 Corinthians 1:3-4"
|
|
],
|
|
"content": "God uses suffering purposefully in believers' lives\u2014for sanctification, character development, and eternal good. 'We know that all things work together for good to them that love God, to them who are the called according to his purpose. For whom he did foreknow, he also did predestinate to be conformed to the image of his Son.' Count it all joy when ye fall into divers temptations; knowing this, that the trying of your faith worketh patience. Let patience have her perfect work, that ye may be perfect and entire, wanting nothing. God chastens us for our profit, that we might be partakers of his holiness; it yields the peaceable fruit of righteousness. The God of all comfort comforts us in tribulation, that we may comfort others. Suffering exposes hidden sin, strengthens faith, develops perseverance, increases dependence on God, produces compassion for others, and reminds us that this world is not our home. It conforms us to Christ, who learned obedience through suffering. It prepares eternal glory far outweighing present affliction. Understanding these purposes enables us to embrace suffering rather than merely endure it, to see trials as divine appointments rather than random misfortunes."
|
|
},
|
|
{
|
|
"title": "The Mystery of Suffering",
|
|
"verses": [
|
|
"Job 38:1-4",
|
|
"Isaiah 55:8-9",
|
|
"Deuteronomy 29:29",
|
|
"Romans 11:33-34"
|
|
],
|
|
"content": "While Scripture reveals purposes in suffering, it does not explain every instance\u2014some suffering remains mysterious this side of eternity. When Job demanded answers, God answered with questions: 'Where wast thou when I laid the foundations of the earth? declare, if thou hast understanding.' God never explained to Job why he suffered; He revealed Himself, and that was enough. 'My thoughts are not your thoughts, neither are your ways my ways, saith the LORD. For as the heavens are higher than the earth, so are my ways higher than your ways, and my thoughts than your thoughts.' The secret things belong unto the LORD our God. O the depth of the riches both of the wisdom and knowledge of God! how unsearchable are his judgments, and his ways past finding out! We must resist the temptation to explain what God has not explained. Job's friends erred by offering confident explanations for his suffering. Sometimes the only honest answer is 'I don't know.' We walk by faith, not sight, trusting God's character when we cannot trace His purposes. The mystery of suffering is not an excuse for unbelief but an invitation to trust the God who understands what we cannot."
|
|
},
|
|
{
|
|
"title": "The Cross: God's Answer to Evil",
|
|
"verses": [
|
|
"Romans 5:8",
|
|
"Isaiah 53:4-6",
|
|
"1 Peter 2:24",
|
|
"Hebrews 2:10"
|
|
],
|
|
"content": "God's ultimate answer to evil is not explanation but incarnation\u2014He entered our suffering in Christ and conquered evil through the cross. 'God commendeth his love toward us, in that, while we were yet sinners, Christ died for us.' Surely he hath borne our griefs, and carried our sorrows... 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. Who his own self bare our sins in his own body on the tree. It became him, for whom are all things, and by whom are all things, in bringing many sons unto glory, to make the captain of their salvation perfect through sufferings. The cross demonstrates that God is not distant from suffering but entered fully into it. Jesus experienced poverty, rejection, betrayal, injustice, torture, and death. He cried out in anguish on the cross. Whatever we suffer, He suffered more. The cross also conquers evil\u2014sin is atoned, Satan is defeated, death is swallowed up in victory. God took the greatest evil (deicide) and produced the greatest good (redemption). This gives us confidence that He can redeem our sufferings too."
|
|
},
|
|
{
|
|
"title": "Hope Beyond Suffering",
|
|
"verses": [
|
|
"Revelation 21:4",
|
|
"Romans 8:18",
|
|
"2 Corinthians 4:17",
|
|
"1 Peter 5:10"
|
|
],
|
|
"content": "The ultimate answer to suffering is eschatological\u2014God promises a future where evil and suffering are forever eliminated. '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.' I reckon that the sufferings of this present time are not worthy to be compared with the glory which shall be revealed in us. Our light affliction, which is but for a moment, worketh for us a far more exceeding and eternal weight of glory. The God of all grace, who hath called us unto his eternal glory by Christ Jesus, after that ye have suffered a while, make you perfect, stablish, strengthen, settle you. Present suffering is temporary; future glory is eternal. Present affliction is light; future glory is weighty beyond measure. This hope does not minimize present pain but puts it in perspective. We groan, waiting for the redemption of our body, but we groan with hope. The new creation will make all things right. Every tear will be wiped away. Evil will be judged. Righteousness will reign. Those who have suffered most will rejoice most in the world where suffering is no more."
|
|
}
|
|
]
|
|
},
|
|
"covenant-theology": {
|
|
"title": "Covenant Theology",
|
|
"description": "The covenants as the framework of redemptive history",
|
|
"sections": [
|
|
{
|
|
"title": "What Is a Covenant?",
|
|
"verses": [
|
|
"Genesis 9:9-11",
|
|
"Genesis 15:18",
|
|
"Exodus 24:7-8",
|
|
"Hebrews 9:15-17"
|
|
],
|
|
"content": "A covenant is a solemn, binding agreement establishing a relationship with promises, conditions, and consequences\u2014God's chosen means of relating to His people. God established His covenant with Noah, promising never again to destroy the earth with a flood. The LORD made a covenant with Abram, promising land, seed, and blessing. Moses read the book of the covenant, and the people responded, 'All that the LORD hath said will we do, and be obedient.' Christ is the mediator of the new testament (covenant), that by means of death, they which are called might receive the promise of eternal inheritance. Covenants involve parties (God and man), promises (what God pledges to do), stipulations (what man is required to do), signs (visible tokens like circumcision or baptism), and sanctions (blessings for obedience, curses for disobedience). Unlike contracts between equals, divine covenants are sovereignly administered by God, who sets the terms and graciously binds Himself to keep them. Covenant is the unifying theme of Scripture\u2014the Bible is organized into Old Covenant (Testament) and New Covenant, with God progressively revealing His redemptive purposes through successive covenants."
|
|
},
|
|
{
|
|
"title": "The Covenant of Works",
|
|
"verses": [
|
|
"Genesis 2:16-17",
|
|
"Hosea 6:7",
|
|
"Romans 5:12-19",
|
|
"1 Corinthians 15:22"
|
|
],
|
|
"content": "God established a covenant with Adam in Eden, promising life upon obedience and death upon disobedience\u2014Adam represented all humanity as their covenant head. 'Of every tree of the garden thou mayest freely eat: but of the tree of the knowledge of good and evil, thou shalt not eat of it: for in the day that thou eatest thereof thou shalt surely die.' Adam, like men, transgressed the covenant (Hosea 6:7, alternate reading). By one man sin entered into the world, and death by sin; and so death passed upon all men, for that all have sinned. In Adam all die. Adam stood as the federal (covenant) head of humanity\u2014his obedience would have secured life for all; his disobedience brought death to all. The covenant of works established the principle that eternal life requires perfect obedience to God's law. Since Adam failed, and in him all humanity failed, no one can now be justified by works\u2014the law brings only condemnation to fallen sinners. This covenant demonstrates human inability and prepares for the gospel: Christ, the last Adam, succeeded where the first Adam failed, earning righteousness for His people through perfect obedience."
|
|
},
|
|
{
|
|
"title": "The Covenant of Grace",
|
|
"verses": [
|
|
"Genesis 3:15",
|
|
"Galatians 3:8",
|
|
"Hebrews 13:20",
|
|
"Romans 4:13-16"
|
|
],
|
|
"content": "After the fall, God established the covenant of grace\u2014promising salvation through faith in Christ, not through human works. The first gospel promise came immediately after the fall: '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.' The Scripture, foreseeing that God would justify the heathen through faith, preached before the gospel unto Abraham. The God of peace brought again from the dead our Lord Jesus, through the blood of the everlasting covenant. The promise is of faith, that it might be by grace; to the end the promise might be sure to all the seed. The covenant of grace encompasses all God's saving dealings with humanity from the fall to the consummation. It is one covenant with various administrations\u2014the substance remains constant (salvation by grace through faith in Christ), while the form develops through biblical history. Adam, Noah, Abraham, Moses, David, and the New Covenant are not separate covenants of grace but progressive unfoldings of the one eternal covenant. Christ is the covenant's mediator, securing its promises by His blood."
|
|
},
|
|
{
|
|
"title": "The Abrahamic Covenant",
|
|
"verses": [
|
|
"Genesis 12:1-3",
|
|
"Genesis 17:7",
|
|
"Galatians 3:16",
|
|
"Galatians 3:29"
|
|
],
|
|
"content": "God's covenant with Abraham established the pattern for all subsequent covenants\u2014promising land, seed, and blessing to Abraham and his descendants. '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 in thee shall all families of the earth be blessed.' I will establish my covenant between me and thee and thy seed after thee in their generations for an everlasting covenant, to be a God unto thee, and to thy seed after thee. Now to Abraham and his seed were the promises made. He saith not, And to seeds, as of many; but as of one, And to thy seed, which is Christ. If ye be Christ's, then are ye Abraham's seed, and heirs according to the promise. The Abrahamic covenant promised: (1) numerous descendants, (2) the land of Canaan, (3) blessing to all nations through Abraham's seed. Its ultimate fulfillment is in Christ, the true Seed, and in His church, Abraham's spiritual descendants. Circumcision was its sign, faith was its condition for receiving the promises, and its scope was universal\u2014all families of the earth would be blessed."
|
|
},
|
|
{
|
|
"title": "The Mosaic Covenant",
|
|
"verses": [
|
|
"Exodus 19:5-6",
|
|
"Exodus 24:7-8",
|
|
"Galatians 3:24",
|
|
"Romans 10:4"
|
|
],
|
|
"content": "God established a covenant with Israel at Sinai, giving the law to reveal His holiness, expose sin, and point to Christ. '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.' Moses took the blood and sprinkled it on the people, and said, Behold the blood of the covenant, which the LORD hath made with you concerning all these words. The law was our schoolmaster to bring us unto Christ, that we might be justified by faith. Christ is the end (goal/termination) of the law for righteousness to every one that believeth. The Mosaic covenant governed Israel as a nation\u2014civil, ceremonial, and moral law. Its purpose was not to provide a way of salvation (no one is justified by law-keeping) but to reveal God's standards, expose human sinfulness, and point forward to Christ. The sacrificial system pictured substitutionary atonement. The tabernacle pictured God dwelling with His people. The law's demands, impossible to fulfill, drove sinners to seek grace. Christ fulfilled the law perfectly and abolished the ceremonial requirements, while the moral law remains as a guide for Christian living."
|
|
},
|
|
{
|
|
"title": "The New Covenant",
|
|
"verses": [
|
|
"Jeremiah 31:31-34",
|
|
"Hebrews 8:6-13",
|
|
"Luke 22:20",
|
|
"2 Corinthians 3:6"
|
|
],
|
|
"content": "God promised a new covenant surpassing the old\u2014writing His law on hearts, providing complete forgiveness, and granting intimate knowledge of Himself. 'Behold, the days come, saith the LORD, that I will make a new covenant with the house of Israel, and with the house of Judah: not according to the covenant that I made with their fathers... 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... for I will forgive their iniquity, and I will remember their sin no more.' Christ is the mediator of a better covenant, established upon better promises. Jesus took the cup saying, 'This cup is the new testament in my blood, which is shed for you.' God hath made us able ministers of the new testament; not of the letter, but of the spirit: for the letter killeth, but the spirit giveth life. The new covenant brings what the old could not: internal transformation, complete forgiveness, the Spirit's indwelling, and direct knowledge of God. Christ's blood ratified this covenant eternally. Baptism and the Lord's Supper are its signs. The church\u2014Jew and Gentile united in Christ\u2014constitutes its covenant community."
|
|
}
|
|
]
|
|
},
|
|
"gospel-in-ot": {
|
|
"title": "The Gospel in the Old Testament",
|
|
"description": "Christ hidden in the Hebrew Scriptures",
|
|
"sections": [
|
|
{
|
|
"title": "Christ the Key to the Old Testament",
|
|
"verses": [
|
|
"Luke 24:27",
|
|
"Luke 24:44-45",
|
|
"John 5:39",
|
|
"John 5:46"
|
|
],
|
|
"content": "Jesus Himself taught that the entire Old Testament points to Him\u2014He is its central theme and interpretive key. 'Beginning at Moses and all the prophets, he expounded unto them in all the scriptures the things concerning himself.' He said, 'All things must be fulfilled, which were written in the law of Moses, and in the prophets, and in the psalms, concerning me. Then opened he their understanding, that they might understand the scriptures.' 'Search the scriptures; for in them ye think ye have eternal life: and they are they which testify of me.' 'Had ye believed Moses, ye would have believed me: for he wrote of me.' The Old Testament is not merely Jewish history or moral instruction but Christian Scripture testifying to Christ. Reading the Old Testament without seeing Christ is like reading a mystery novel and missing the solution. Every page anticipates, prepares for, or pictures the coming Redeemer. This Christ-centered hermeneutic transforms Old Testament study from mere antiquarian interest to spiritual encounter with the living Christ revealed in Scripture."
|
|
},
|
|
{
|
|
"title": "The Protoevangelium",
|
|
"verses": [
|
|
"Genesis 3:15",
|
|
"Galatians 4:4",
|
|
"Romans 16:20",
|
|
"Hebrews 2:14"
|
|
],
|
|
"content": "The first gospel promise appears immediately after the fall\u2014the seed of the woman will crush the serpent's head, though suffering in the process. '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.' This cryptic promise contains the gospel in seed form. The 'seed of the woman' (unusual phrase\u2014normally seed is traced through men) points to the virgin birth. The enmity between seeds indicates the ongoing conflict between Christ and Satan, between the godly line and the ungodly. The crushing of the serpent's head signifies Satan's decisive defeat; the bruising of the heel indicates Christ's suffering in achieving victory. When the fulness of the time was come, God sent forth his Son, made of a woman. The God of peace shall bruise Satan under your feet shortly. Through death Christ destroyed him that had the power of death, that is, the devil. From Eden onward, the Old Testament progressively unfolds this promise until its fulfillment in Christ's incarnation, death, and resurrection."
|
|
},
|
|
{
|
|
"title": "Gospel in the Patriarchs",
|
|
"verses": [
|
|
"Genesis 22:8",
|
|
"Genesis 22:14",
|
|
"Galatians 3:8",
|
|
"Hebrews 11:17-19"
|
|
],
|
|
"content": "Abraham's life, especially the offering of Isaac, powerfully pictures the gospel of God's provision and substitutionary sacrifice. When Isaac asked about the lamb for burnt offering, Abraham prophetically answered, 'My son, God will provide himself a lamb for a burnt offering.' Abraham called the place Jehovah-jireh\u2014'The LORD will provide.' The Scripture, foreseeing that God would justify the heathen through faith, preached before the gospel unto Abraham, saying, In thee shall all nations be blessed. By faith Abraham offered up Isaac, accounting that God was able to raise him up, even from the dead; from whence also he received him in a figure. The binding of Isaac pictures the Father offering His Son; the ram caught in the thicket pictures substitutionary atonement\u2014another dying in Isaac's place. Abraham's faith in resurrection foreshadows the gospel hope. Jacob's blessing of Judah (Genesis 49:10) promised the scepter would not depart until Shiloh (the one to whom it belongs) comes\u2014pointing to Christ the King. Joseph, betrayed by brothers, sold for silver, unjustly condemned, raised to glory, and saving his people through suffering, is one of Scripture's clearest types of Christ."
|
|
},
|
|
{
|
|
"title": "Gospel in the Exodus",
|
|
"verses": [
|
|
"Exodus 12:13",
|
|
"1 Corinthians 5:7",
|
|
"John 1:29",
|
|
"1 Peter 1:18-19"
|
|
],
|
|
"content": "The Passover and Exodus provide the Old Testament's most developed gospel picture\u2014redemption through the blood of the lamb and deliverance from bondage. 'When I see the blood, I will pass over you, and the plague shall not be upon you to destroy you.' Christ our passover is sacrificed for us. John the Baptist declared, 'Behold the Lamb of God, which taketh away the sin of the world.' Ye were not redeemed with corruptible things, as silver and gold... but with the precious blood of Christ, as of a lamb without blemish and without spot. The Passover lamb pictures Christ: without blemish, killed at twilight (as Christ died at the ninth hour), its blood applied to doorposts (as Christ's blood is applied by faith), its flesh eaten (as we feed on Christ), and none of its bones broken (as Christ's bones were not broken). Israel's bondage pictures slavery to sin; Pharaoh pictures Satan; the plagues picture God's judgment on false gods; the Red Sea crossing pictures baptism and deliverance; the wilderness pictures sanctification; Canaan pictures the believer's rest in Christ. The entire Exodus narrative is gospel dramatized."
|
|
},
|
|
{
|
|
"title": "Gospel in the Sacrifices",
|
|
"verses": [
|
|
"Leviticus 17:11",
|
|
"Hebrews 9:22",
|
|
"Hebrews 10:1-4",
|
|
"Isaiah 53:10"
|
|
],
|
|
"content": "The Levitical sacrificial system taught gospel truths: sin requires death, blood makes atonement, and substitution is God's gracious provision. '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.' Without shedding of blood is no remission. The law had a shadow of good things to come; those sacrifices could never take away sins\u2014they pointed forward to the one sacrifice that could. It pleased the LORD to bruise him; he hath put him to grief: when thou shalt make his soul an offering for sin. The burnt offering pictured complete consecration to God. The sin offering addressed specific transgressions. The guilt offering provided restitution. The peace offering celebrated fellowship with God. All were shadows; Christ is the substance. His one sacrifice accomplished what millions of animal sacrifices could not\u2014eternal redemption, permanent cleansing, complete forgiveness. The Old Testament believer who brought sacrifices in faith was looking forward to Christ; we look backward to the same Christ, but He is the object of faith in both testaments."
|
|
},
|
|
{
|
|
"title": "Gospel in the Prophets",
|
|
"verses": [
|
|
"Isaiah 53:5-6",
|
|
"Micah 5:2",
|
|
"Zechariah 9:9",
|
|
"Malachi 3:1"
|
|
],
|
|
"content": "The prophets spoke explicitly of the coming Messiah\u2014His birth, ministry, suffering, death, resurrection, and reign. '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. All we like sheep have gone astray; we have turned every one to his own way; and the LORD hath laid on him the iniquity of us all.' Bethlehem is named as the birthplace of one 'whose goings forth have been from of old, from everlasting.' Zechariah predicted the triumphal entry: 'thy King cometh unto thee... lowly, and riding upon an ass.' 'The Lord, whom ye seek, shall suddenly come to his temple.' Isaiah 7:14 promised a virgin-born son named Immanuel. Isaiah 9:6 described a child who would be called Mighty God, Everlasting Father. Psalm 22 describes crucifixion in detail. Daniel 9 predicted the Messiah's coming and death. Zechariah 12:10 foretold that Israel would look upon the one they pierced. The prophets provide such detailed predictions that Jesus' fulfillment of them constitutes powerful evidence for His messiahship and Scripture's divine inspiration."
|
|
}
|
|
]
|
|
},
|
|
"law-and-christian": {
|
|
"title": "The Law and the Christian",
|
|
"description": "The three uses of the law and its ongoing relevance",
|
|
"sections": [
|
|
{
|
|
"title": "Christ Fulfilled the Law",
|
|
"verses": [
|
|
"Matthew 5:17-18",
|
|
"Romans 10:4",
|
|
"Galatians 4:4-5",
|
|
"Romans 8:3-4"
|
|
],
|
|
"content": "Christ fulfilled the law perfectly, accomplishing what we could never do and satisfying its demands on our behalf. 'Think not that I am come to destroy the law, or the prophets: I am not come to destroy, but to fulfil. For verily I say unto you, Till heaven and earth pass, one jot or one tittle shall in no wise pass from the law, till all be fulfilled.' Christ is the end (goal/termination) of the law for righteousness to every one that believeth. God sent forth his Son, made of a woman, made under the law, to redeem them that were under the law. What the law could not do, in that it was weak through the flesh, God sending his own Son in the likeness of sinful flesh, and for sin, condemned sin in the flesh: that the righteousness of the law might be fulfilled in us. Christ fulfilled the law in two ways: actively, by perfectly obeying its commands throughout His life, and passively, by suffering its penalty for lawbreakers on the cross. His perfect righteousness is imputed to believers; His atoning death satisfies the law's just demands. We are therefore not under law but under grace\u2014not because the law was abolished but because its demands have been fully met in Christ."
|
|
},
|
|
{
|
|
"title": "The First Use: Restraining Sin",
|
|
"verses": [
|
|
"Romans 2:14-15",
|
|
"1 Timothy 1:8-10",
|
|
"Romans 13:3-4",
|
|
"Galatians 3:19"
|
|
],
|
|
"content": "The law functions to restrain sin in society\u2014the civil use that maintains order and curbs outward wickedness. Even Gentiles who do not have the written law 'shew the work of the law written in their hearts, their conscience also bearing witness.' The law is good if a man use it lawfully, knowing that the law is not made for a righteous man, but for the lawless and disobedient, for the ungodly and for sinners, for murderers, for whoremongers, for them that defile themselves with mankind, for menstealers, for liars, for perjured persons. Civil rulers are God's ministers who bear the sword to execute wrath upon evildoers. The law was added because of transgressions. This 'civil use' of the law restrains human wickedness through fear of punishment, providing relative peace and order in society. Civil governments rightly base laws on moral principles rooted in God's law. While this use cannot change hearts or save souls, it provides restraint necessary for society's functioning. The law written on human hearts produces conscience, and civil law reinforces moral boundaries. This use benefits both believers and unbelievers, creating conditions for human flourishing."
|
|
},
|
|
{
|
|
"title": "The Second Use: Revealing Sin",
|
|
"verses": [
|
|
"Romans 3:20",
|
|
"Romans 7:7",
|
|
"Galatians 3:24",
|
|
"Romans 5:20"
|
|
],
|
|
"content": "The law's primary evangelical function is to expose sin, convict sinners, and drive them to Christ for salvation. 'By the law is the knowledge of sin.' I had not known sin, but by the law: for I had not known lust, except the law had said, Thou shalt not covet. The law was our schoolmaster to bring us unto Christ, that we might be justified by faith. The law entered, that the offence might abound. But where sin abounded, grace did much more abound. The law acts as a mirror showing us our spiritual condition\u2014condemned, guilty, helpless. It strips away self-righteousness by revealing the impossibility of earning salvation through law-keeping. No flesh will be justified by the deeds of the law. The law's impossible demands crush human pride and create despair, preparing sinners to embrace grace. Without the law's convicting work, people imagine themselves righteous. The law, applied by the Spirit, creates the sense of need that makes the gospel welcome. Luther called this the law's 'proper use'\u2014its theological function of killing self-righteousness and driving sinners to the only Savior. Preach the law to the self-righteous; preach grace to the broken."
|
|
},
|
|
{
|
|
"title": "The Third Use: Guiding Believers",
|
|
"verses": [
|
|
"Psalm 119:97-105",
|
|
"Romans 13:8-10",
|
|
"1 John 5:3",
|
|
"James 1:25"
|
|
],
|
|
"content": "For believers, the moral law remains a guide for godly living\u2014showing what pleases God, not for justification but for sanctification. 'O how love I thy law! it is my meditation all the day... Thy word is a lamp unto my feet, and a light unto my path.' Love worketh no ill to his neighbour: therefore love is the fulfilling of the law. This is the love of God, that we keep his commandments: and his commandments are not grievous. Whoso looketh into the perfect law of liberty, and continueth therein, he being not a forgetful hearer, but a doer of the work, this man shall be blessed in his deed. The believer is not under law for justification but delights in God's law as the revelation of His will. We obey not to earn salvation but because we are saved, not from fear of punishment but from love for our Redeemer. The law shows what holiness looks like in practice. It guides our sanctification, revealing sin to be mortified and righteousness to be pursued. The Ten Commandments summarize moral obligations that remain binding\u2014though their motivation and power are transformed by grace. We love God's law because we love the Lawgiver."
|
|
},
|
|
{
|
|
"title": "Moral, Ceremonial, and Civil Law",
|
|
"verses": [
|
|
"Matthew 5:17-19",
|
|
"Colossians 2:16-17",
|
|
"Hebrews 9:9-10",
|
|
"Acts 15:28-29"
|
|
],
|
|
"content": "The Old Testament law contains three aspects: moral (permanent), ceremonial (fulfilled in Christ), and civil (for Israel's theocracy). The moral law, summarized in the Ten Commandments, reflects God's eternal character and remains binding on all people in all ages. Jesus intensified its demands, showing that it addresses heart attitudes as well as outward actions. The ceremonial law\u2014sacrifices, priesthood, dietary regulations, purity laws\u2014pointed to Christ and was fulfilled by Him. Let no man therefore judge you in meat, or in drink, or in respect of an holy day: which are a shadow of things to come; but the body is of Christ. These were figures for the time then present, imposed until the time of reformation. Christians are not bound by ceremonial regulations. The civil law governed Israel as a theocratic nation\u2014judicial procedures, property laws, civil penalties. While its specific regulations were for Israel's unique situation, its underlying moral principles (equity, justice, mercy) have broader application. The Jerusalem Council determined that Gentile Christians need not observe Jewish ceremonial law\u2014the moral law alone is binding."
|
|
},
|
|
{
|
|
"title": "Law and Gospel",
|
|
"verses": [
|
|
"John 1:17",
|
|
"Romans 6:14",
|
|
"Galatians 5:18",
|
|
"Romans 3:31"
|
|
],
|
|
"content": "Law and gospel are distinct but not opposed\u2014understanding their proper relationship is essential for Christian living. 'The law was given by Moses, but grace and truth came by Jesus Christ.' Ye are not under the law, but under grace. If ye be led of the Spirit, ye are not under the law. Do we then make void the law through faith? God forbid: yea, we establish the law. The law commands; the gospel gives. The law says 'do this and live'; the gospel says 'live because Christ has done this.' The law condemns; the gospel justifies. The law drives us from ourselves to Christ; in Christ we find power to fulfill the law's righteous requirements. We are not under law as a covenant of works, seeking justification by obedience. We are under grace, justified freely, with Christ's righteousness imputed to us. Yet the moral law remains God's standard, now written on our hearts by the Spirit. We establish the law through faith\u2014not by perfectly keeping it (impossible) but by recognizing its righteous requirements fulfilled in Christ and progressively reflected in our Spirit-empowered lives. Antinomianism (lawlessness) and legalism (law-righteousness) are both errors; biblical Christianity maintains law and gospel in proper relationship."
|
|
}
|
|
]
|
|
},
|
|
"faith-and-works": {
|
|
"title": "Faith and Works",
|
|
"description": "James and Paul reconciled",
|
|
"sections": [
|
|
{
|
|
"title": "Salvation by Grace Through Faith",
|
|
"verses": [
|
|
"Ephesians 2:8-9",
|
|
"Romans 3:28",
|
|
"Galatians 2:16",
|
|
"Titus 3:5"
|
|
],
|
|
"content": "Scripture emphatically teaches that salvation is by grace alone through faith alone in Christ alone, not by human works or merit. '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.' We conclude that a man is justified by faith without the deeds of the law. 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. Not by works of righteousness which we have done, but according to his mercy he saved us. This is the glorious truth of the Reformation: sola gratia, sola fide, solus Christus. We contribute nothing to our salvation except the sin that made it necessary. Justification is a legal declaration, not a moral transformation\u2014God declares sinners righteous on the basis of Christ's imputed righteousness, received through faith alone. Any addition of human works corrupts the gospel and destroys grace."
|
|
},
|
|
{
|
|
"title": "Faith That Works",
|
|
"verses": [
|
|
"James 2:17-18",
|
|
"James 2:24",
|
|
"James 2:26",
|
|
"Galatians 5:6"
|
|
],
|
|
"content": "James teaches that genuine faith inevitably produces works\u2014faith without works is dead, being alone. 'Even so faith, if it hath not works, is dead, being alone. Yea, a man may say, Thou hast faith, and I have works: shew me thy faith without thy works, and I will shew thee my faith by my works.' Ye see then how that by works a man is justified, and not by faith only. As the body without the spirit is dead, so faith without works is dead also. In Jesus Christ neither circumcision availeth any thing, nor uncircumcision; but faith which worketh by love. James does not contradict Paul; they address different questions. Paul answers 'How is a person justified before God?'\u2014by faith alone. James answers 'What kind of faith justifies?'\u2014living faith that produces works. James attacks a dead orthodoxy that professes faith but shows no evidence of transformation. Even demons believe\u2014and tremble. True faith is never alone; it always produces fruit. Works do not contribute to justification but demonstrate its reality. Faith is the root; works are the fruit. We are saved by faith alone, but the faith that saves is never alone."
|
|
},
|
|
{
|
|
"title": "The Nature of Saving Faith",
|
|
"verses": [
|
|
"Hebrews 11:1",
|
|
"Romans 10:9-10",
|
|
"John 1:12",
|
|
"Acts 16:31"
|
|
],
|
|
"content": "Saving faith involves knowledge, assent, and trust\u2014believing the gospel intellectually, agreeing that it is true, and personally relying on Christ for salvation. 'Faith is the substance of things hoped for, the evidence of things not seen.' If thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved. For with the heart man believeth unto righteousness. As many as received him, to them gave he power to become the sons of God, even to them that believe on his name. Believe on the Lord Jesus Christ, and thou shalt be saved. Faith is not mere intellectual agreement\u2014demons have that. Faith is not mere emotional experience\u2014feelings fluctuate. Saving faith is wholehearted trust in Christ, resting entirely on Him for salvation. It includes repentance\u2014turning from sin and self-righteousness to Christ. It produces obedience\u2014faith without works is dead. But salvation is received through faith, not through the works that follow. The object of faith is Christ, not our faith itself; we are saved by Christ through faith, not by faith through Christ."
|
|
},
|
|
{
|
|
"title": "Created for Good Works",
|
|
"verses": [
|
|
"Ephesians 2:10",
|
|
"Titus 2:14",
|
|
"Matthew 5:16",
|
|
"Colossians 1:10"
|
|
],
|
|
"content": "Though saved by grace through faith apart from works, believers are saved unto good works\u2014created in Christ Jesus for this purpose. 'We are his workmanship, created in Christ Jesus unto good works, which God hath before ordained that we should walk in them.' Christ gave himself for us, that he might redeem us from all iniquity, and purify unto himself a peculiar people, zealous of good works. Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven. Walk worthy of the Lord unto all pleasing, being fruitful in every good work. Good works are not the ground of salvation but its goal and evidence. God planned our good works before the foundation of the world and prepared us to walk in them through regeneration and sanctification. We work because we are saved, not to be saved. These works include loving God and neighbor, serving the church, caring for the poor, proclaiming the gospel, pursuing holiness, and every act of obedience to God's commands. When others see our good works, they should glorify not us but our Father in heaven\u2014works testify to grace."
|
|
},
|
|
{
|
|
"title": "Examining Ourselves",
|
|
"verses": [
|
|
"2 Corinthians 13:5",
|
|
"Matthew 7:21-23",
|
|
"1 John 2:3-4",
|
|
"1 John 3:14"
|
|
],
|
|
"content": "Scripture calls believers to examine themselves for evidence of genuine faith\u2014not everyone who professes Christ truly knows Him. 'Examine yourselves, whether ye be in the faith; prove your own selves.' Not every one that saith unto me, Lord, Lord, shall enter into the kingdom of heaven; but he that doeth the will of my Father which is in heaven. Many will say to me in that day, Lord, Lord, have we not prophesied in thy name?... And then will I profess unto them, I never knew you. Hereby we do know that we know him, if we keep his commandments. He that saith, I know him, and keepeth not his commandments, is a liar, and the truth is not in him. We know that we have passed from death unto life, because we love the brethren. Self-examination asks: Do I love God? Do I keep His commandments? Do I love fellow believers? Is there fruit of the Spirit in my life? Am I growing in holiness? Do I hate sin? Do I hunger for righteousness? These are marks of genuine conversion. False assurance is deadly; true assurance is precious. We examine ourselves not to doubt God's promises but to confirm we truly believe them."
|
|
},
|
|
{
|
|
"title": "Perseverance as Evidence",
|
|
"verses": [
|
|
"Colossians 1:22-23",
|
|
"Hebrews 3:14",
|
|
"1 John 2:19",
|
|
"Matthew 24:13"
|
|
],
|
|
"content": "Perseverance in faith and holiness is both the gift of God to His elect and the evidence that faith is genuine. Christ will present you holy and unblameable and unreproveable in his sight: 'if ye continue in the faith grounded and settled, and be not moved away from the hope of the gospel.' We are made partakers of Christ, if we hold the beginning of our confidence stedfast unto the end. They went out from us, but they were not of us; for if they had been of us, they would no doubt have continued with us: but they went out, that they might be made manifest that they were not all of us. He that shall endure unto the end, the same shall be saved. Those who fall away prove they were never truly Christ's\u2014they were among us but not of us. Genuine believers persevere because God preserves them. Yet perseverance is the means by which we inherit the promises. This creates not uncertainty but diligence\u2014we make our calling and election sure by adding to faith virtue, knowledge, temperance, patience, godliness, brotherly kindness, and charity. Final salvation awaits those who endure to the end\u2014and all whom God justifies will endure, for He completes what He begins."
|
|
}
|
|
]
|
|
},
|
|
"scarlet-thread": {
|
|
"title": "The Scarlet Thread",
|
|
"description": "Redemption traced from Genesis to Revelation",
|
|
"sections": [
|
|
{
|
|
"title": "The Fall and the Promise",
|
|
"verses": [
|
|
"Genesis 3:15",
|
|
"Genesis 3:21",
|
|
"Romans 5:12",
|
|
"1 Corinthians 15:22"
|
|
],
|
|
"content": "Human history began with creation in innocence and the tragedy of the fall\u2014yet God immediately promised redemption through the seed of the woman. When Adam and Eve sinned, they tried to cover their nakedness with fig leaves; God provided coats of skin, requiring the death of an animal\u2014the first blood sacrifice pointing to Christ. God cursed the serpent: '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.' Here begins the scarlet thread\u2014the promise of a coming Redeemer who would crush Satan's head while suffering in the process. By one man sin entered into the world, and death by sin; and so death passed upon all men. In Adam all die; but in Christ shall all be made alive. The promise given in Eden sustained believers through millennia: a Deliverer would come, born of a woman, who would reverse the curse and restore what was lost. Every subsequent covenant, sacrifice, and prophecy unfolds this initial promise until its fulfillment in Christ."
|
|
},
|
|
{
|
|
"title": "Blood Before the Law",
|
|
"verses": [
|
|
"Genesis 4:4",
|
|
"Genesis 8:20",
|
|
"Genesis 22:13",
|
|
"Hebrews 11:4"
|
|
],
|
|
"content": "Before the Mosaic law, righteous people offered blood sacrifices, acknowledging that sin requires death and approaching God through substitutionary offerings. Abel brought of the firstlings of his flock and of the fat thereof, and the LORD had respect unto Abel and to his offering\u2014by faith Abel offered unto God a more excellent sacrifice than Cain. After the flood, Noah built an altar unto the LORD and offered burnt offerings; the LORD smelled a sweet savour. When Abraham was about to offer Isaac, the angel stayed his hand, and Abraham saw a ram caught in a thicket by his horns: Abraham offered him up for a burnt offering in the stead of his son. These sacrifices expressed faith in God's provision and pictured the coming Redeemer. The worshippers understood, however dimly, that they could not approach a holy God without blood\u2014without a substitute dying in their place. The scarlet thread runs through these pre-law sacrifices: sin demands death, God provides a substitute, the innocent dies for the guilty. This pattern, established from Eden onward, would be codified in the Mosaic law and ultimately fulfilled in Christ."
|
|
},
|
|
{
|
|
"title": "The Passover",
|
|
"verses": [
|
|
"Exodus 12:13",
|
|
"Exodus 12:23",
|
|
"1 Corinthians 5:7",
|
|
"1 Peter 1:18-19"
|
|
],
|
|
"content": "The Passover in Egypt displays redemption through blood with stunning clarity\u2014a lamb slain, blood applied, and judgment passing over those under its protection. 'When I see the blood, I will pass over you, and the plague shall not be upon you to destroy you.' The LORD will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you. Christ our passover is sacrificed for us. Ye were redeemed... with the precious blood of Christ, as of a lamb without blemish and without spot. Every element pictures Christ: the lamb without blemish (Christ's sinlessness), killed at twilight (Christ dying at the ninth hour), its blood applied (appropriating Christ's sacrifice by faith), its flesh eaten (feeding on Christ), no bone broken (Christ's bones unbroken on the cross), and Israel's deliverance from bondage (our redemption from sin's slavery). The Passover became Israel's central commemorative feast, celebrated annually for fifteen centuries, keeping alive the memory of redemption through blood until the true Lamb came. At His final Passover, Jesus transformed the feast into the Lord's Supper, declaring 'This is my blood of the new testament, which is shed for many.'"
|
|
},
|
|
{
|
|
"title": "The Levitical Sacrifices",
|
|
"verses": [
|
|
"Leviticus 17:11",
|
|
"Hebrews 9:22",
|
|
"Hebrews 10:1-4",
|
|
"Leviticus 16:21-22"
|
|
],
|
|
"content": "The entire Levitical system revolved around blood sacrifice\u2014teaching that sin requires death and atonement comes only through substitutionary offerings. '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.' Without shedding of blood is no remission. The law had a shadow of good things to come; those sacrifices could never take away sins\u2014they were object lessons pointing to the one sacrifice that could. On the Day of Atonement, Aaron laid both hands upon the head of the live goat and confessed over him all the iniquities of the children of Israel, putting them upon the head of the goat\u2014picturing sin's transfer to a substitute. The blood of bulls and goats flowed daily, weekly, monthly, yearly\u2014millions of animals over fifteen centuries. This staggering volume of blood taught one lesson: sin is serious, death is required, and human effort cannot atone. The repetition taught another lesson: these sacrifices were insufficient\u2014they pointed forward to something greater. The scarlet thread runs crimson through the tabernacle, the temple, and the altar until Christ declares, 'It is finished.'"
|
|
},
|
|
{
|
|
"title": "The Prophetic Promise",
|
|
"verses": [
|
|
"Isaiah 53:5-7",
|
|
"Zechariah 9:11",
|
|
"Daniel 9:26",
|
|
"Zechariah 13:1"
|
|
],
|
|
"content": "The prophets explicitly foretold a coming Redeemer whose blood would establish the new covenant and cleanse from sin. '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... he is brought as a lamb to the slaughter... he hath poured out his soul unto death.' Zechariah proclaimed, 'By the blood of thy covenant I have sent forth thy prisoners out of the pit wherein is no water.' Daniel predicted, 'Messiah shall be cut off, but not for himself.' Zechariah foretold, '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.' These prophecies revealed what the sacrifices pictured: God Himself would provide the ultimate sacrifice. The Servant of the LORD would bear our iniquities. The Messiah would be cut off for others' sins. A fountain of cleansing would be opened. The scarlet thread runs through every prophet, converging on Calvary where the promises would be fulfilled in Christ's atoning death."
|
|
},
|
|
{
|
|
"title": "The Blood of Christ",
|
|
"verses": [
|
|
"Hebrews 9:12",
|
|
"1 John 1:7",
|
|
"Revelation 1:5",
|
|
"Ephesians 1:7"
|
|
],
|
|
"content": "In Christ, all that the sacrifices pictured and the prophets promised finds fulfillment\u2014His blood accomplishes eternal redemption. 'Neither by the blood of goats and calves, but by his own blood he entered in once into the holy place, having obtained eternal redemption for us.' The blood of Jesus Christ his Son cleanseth us from all sin. Unto him that loved us, and washed us from our sins in his own blood. In whom we have redemption through his blood, the forgiveness of sins. Christ's blood is superior to all that preceded it: it is human blood (He became flesh), yet divine blood (He is God's Son); it is sinless blood (He knew no sin), offered willingly (He laid down His life); it secures eternal redemption (one sacrifice forever), not merely annual covering. The scarlet thread that began in Eden, ran through patriarchal altars, pooled at Passover, flowed through the tabernacle and temple, and colored the prophetic visions, converges at Golgotha where God's Lamb bleeds and dies. The veil is torn; access is opened; redemption is accomplished. Christ's blood answers every requirement of God's justice and provides complete salvation for all who trust in Him."
|
|
},
|
|
{
|
|
"title": "The Lamb on the Throne",
|
|
"verses": [
|
|
"Revelation 5:9-10",
|
|
"Revelation 7:14",
|
|
"Revelation 12:11",
|
|
"Revelation 19:13"
|
|
],
|
|
"content": "The book of Revelation consummates the scarlet thread, revealing the slain Lamb enthroned in glory, His blood-bought people worshipping forever. '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.' The great multitude before the throne have washed their robes, and made them white in the blood of the Lamb. The saints overcome Satan by the blood of the Lamb, and by the word of their testimony. Christ returns clothed with a vesture dipped in blood: and his name is called The Word of God. Heaven's worship centers on the Lamb who was slain\u2014His death is eternally remembered, His blood eternally celebrated. The scarlet thread that began with promise in Eden ends with praise in the New Jerusalem. From the first animal killed to clothe Adam and Eve to the Lamb standing as though slain in heaven's throne room, redemption through blood is Scripture's grand theme. Creation, fall, promise, sacrifice, fulfillment, consummation\u2014every page is stained with the blood that cleanses from sin and purchases a people for God's eternal praise."
|
|
}
|
|
]
|
|
},
|
|
"spirits-demons": {
|
|
"title": "Spirits & Demons",
|
|
"description": "The biblical teaching on unclean spirits and spiritual warfare",
|
|
"sections": [
|
|
{
|
|
"title": "The Reality of Evil Spirits",
|
|
"verses": [
|
|
"Ephesians 6:12",
|
|
"1 Peter 5:8",
|
|
"Job 1:6-7",
|
|
"2 Corinthians 4:4"
|
|
],
|
|
"content": "Scripture unambiguously affirms the existence of evil spirits\u2014fallen angels who rebelled against God and now oppose His purposes. '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.' Your adversary the devil, as a roaring lion, walketh about, seeking whom he may devour. Satan presented himself among the sons of God, going to and fro in the earth. The god of this world hath blinded the minds of them which believe not. These are not metaphors for psychological states or social evils but personal spiritual beings with intelligence, will, and malevolent purpose. They are organized hierarchically under Satan's leadership. While Scripture does not satisfy our curiosity about their origin, nature, or precise activities, it clearly teaches their reality and warns against their schemes. Denial of spiritual evil leaves believers vulnerable; obsession with demons distracts from Christ. The biblical balance acknowledges their reality while focusing on the victory already won."
|
|
},
|
|
{
|
|
"title": "Satan: The Adversary",
|
|
"verses": [
|
|
"Isaiah 14:12-15",
|
|
"Ezekiel 28:12-17",
|
|
"Revelation 12:9",
|
|
"John 8:44"
|
|
],
|
|
"content": "Satan, the chief of demons, is a fallen angel of great power and cunning who leads the rebellion against God. Isaiah's lament over the king of Babylon glimpses behind the earthly ruler to his spiritual master: 'How art thou fallen from heaven, O Lucifer, son of the morning! For thou hast said in thine heart, I will ascend into heaven, I will exalt my throne above the stars of God... I will be like the most High.' Ezekiel similarly addresses the prince of Tyre while describing one who was in Eden, perfect in beauty, until iniquity was found in him. That ancient serpent, called the Devil and Satan, deceives the whole world. Jesus said of him, 'He was a murderer from the beginning, and abode not in the truth, because there is no truth in him... he is a liar, and the father of it.' Satan's names reveal his character: Satan means 'adversary,' Devil means 'slanderer,' he is the tempter, the accuser of the brethren, the prince of this world. Yet he is a creature, not a second god\u2014powerful but limited, active but restrained, doomed to ultimate defeat."
|
|
},
|
|
{
|
|
"title": "Demon Possession in the Gospels",
|
|
"verses": [
|
|
"Mark 5:2-13",
|
|
"Matthew 12:43-45",
|
|
"Luke 8:2",
|
|
"Mark 1:23-26"
|
|
],
|
|
"content": "The Gospels record numerous encounters between Jesus and demon-possessed individuals, demonstrating both the reality of demonic oppression and Christ's absolute authority over evil spirits. The Gadarene demoniac was possessed by many demons: 'My name is Legion: for we are many.' They tormented him terribly\u2014he lived among tombs, crying out, cutting himself, possessing supernatural strength to break chains. Yet at Jesus' word, they immediately obeyed, entering the swine and perishing. When an unclean spirit leaves a man, it seeks rest; finding none, it returns with seven spirits more wicked, and the last state is worse than the first. Mary Magdalene had been delivered from seven devils. In the synagogue, a man with an unclean spirit cried out, recognizing Jesus: 'I know thee who thou art, the Holy One of God.' Jesus rebuked him, commanding, 'Hold thy peace, and come out of him.' The demons knew Jesus' identity, feared His judgment, and obeyed His commands instantly. His exorcisms authenticated His messiahship and demonstrated the arrival of God's kingdom."
|
|
},
|
|
{
|
|
"title": "Christ's Victory Over Demons",
|
|
"verses": [
|
|
"Colossians 2:15",
|
|
"Hebrews 2:14",
|
|
"1 John 3:8",
|
|
"Luke 10:18"
|
|
],
|
|
"content": "Through His death and resurrection, Christ decisively defeated Satan and his demons, stripping them of their ultimate power. 'Having spoiled principalities and powers, he made a shew of them openly, triumphing over them in it.' Through death he destroyed him that had the power of death, that is, the devil; and delivered them who through fear of death were all their lifetime subject to bondage. For this purpose the Son of God was manifested, that he might destroy the works of the devil. Jesus declared, 'I beheld Satan as lightning fall from heaven.' The cross was not Satan's victory but his defeat\u2014what appeared to be Christ's humiliation was actually the enemy's overthrow. Satan's accusations are silenced by Christ's atoning blood. Death's sting is removed by resurrection. The strong man has been bound by a stronger. While demons remain active in this present age, they are defeated foes fighting a rearguard action against an outcome already determined. Believers share in Christ's victory; we overcome by the blood of the Lamb."
|
|
},
|
|
{
|
|
"title": "Spiritual Warfare",
|
|
"verses": [
|
|
"Ephesians 6:10-18",
|
|
"2 Corinthians 10:3-5",
|
|
"James 4:7",
|
|
"1 John 4:4"
|
|
],
|
|
"content": "Believers are called to stand firm against demonic opposition, armed with spiritual weapons provided by God. 'Be strong in the Lord, and in the power of his might. Put on the whole armour of God, that ye may be able to stand against the wiles of the devil.' The weapons of our warfare are not carnal, but mighty through God to the pulling down of strong holds, casting down imaginations and every high thing that exalteth itself against the knowledge of God. Submit yourselves therefore to God. Resist the devil, and he will flee from you. Greater is he that is in you, than he that is in the world. The armor includes truth, righteousness, the gospel of peace, faith, salvation, the Word of God, and prayer. Note that all pieces are defensive except the sword of the Spirit (Scripture)\u2014our calling is to stand, not to attack. We do not seek demons to fight; we stand against their attacks. Victory comes through Christ's finished work appropriated by faith, the Word of God applied to specific temptations, and persistent prayer. We need not fear demons; neither should we be fascinated by them. Our focus is Christ, not Satan."
|
|
},
|
|
{
|
|
"title": "Testing the Spirits",
|
|
"verses": [
|
|
"1 John 4:1-3",
|
|
"2 Corinthians 11:14",
|
|
"1 Timothy 4:1",
|
|
"Matthew 24:24"
|
|
],
|
|
"content": "Scripture warns that demons deceive through false teaching and counterfeit spirituality, requiring believers to exercise discernment. 'Beloved, believe not every spirit, but try the spirits whether they are of God: because many false prophets are gone out into the world. Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God.' Satan himself is transformed into an angel of light; no wonder his ministers appear as ministers of righteousness. In latter times some shall depart from the faith, giving heed to seducing spirits, and doctrines of devils. False Christs and false prophets shall shew great signs and wonders, to deceive if possible even the elect. Demonic deception operates through false religions, heretical teaching within the church, counterfeit spiritual experiences, and occult practices. The test is always doctrinal: What does this teaching say about Christ? Experiences, miracles, and apparent spiritual power prove nothing apart from sound doctrine. The Spirit of truth leads to the Christ of Scripture; spirits that deny or diminish Christ are not from God."
|
|
},
|
|
{
|
|
"title": "Demons' Final Doom",
|
|
"verses": [
|
|
"Matthew 25:41",
|
|
"Revelation 20:10",
|
|
"2 Peter 2:4",
|
|
"Jude 1:6"
|
|
],
|
|
"content": "Scripture reveals that demons face certain and eternal judgment\u2014the lake of fire was prepared specifically for Satan and his angels. 'Depart from me, ye cursed, into everlasting fire, prepared for the devil and his angels.' The devil that deceived them was cast into the lake of fire and brimstone, where the beast and the false prophet are, and shall be tormented day and night for ever and ever. God spared not the angels that sinned, but cast them down to hell, and delivered them into chains of darkness, to be reserved unto judgment. The angels which kept not their first estate, but left their own habitation, he hath reserved in everlasting chains under darkness unto the judgment of the great day. Demons know their doom is certain; they asked Jesus, 'Art thou come hither to torment us before the time?' Their present activity is that of condemned criminals awaiting execution. This certain judgment assures believers that evil will not triumph, that justice will be done, and that the spiritual war, however fierce now, has an ending already written. Maranatha\u2014the Lord comes, and with Him, the end of all demonic opposition."
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |