diff --git a/kjvstudy_org/server.py b/kjvstudy_org/server.py index 4845b9f..e556aff 100644 --- a/kjvstudy_org/server.py +++ b/kjvstudy_org/server.py @@ -4318,6 +4318,111 @@ def topics_page(request: Request): ) +@app.get("/resources", response_class=HTMLResponse) +def resources_page(request: Request): + """Browse all theological resources""" + books = list(bible.iter_books()) + + # Organize resources into categories + resources = { + "People": [ + { + "name": "Biblical Prophets", + "url": "/biblical-prophets", + "description": "Explore the prophetic ministry throughout Scripture, from Isaiah to Malachi", + "count": "9 prophets" + }, + { + "name": "The Twelve Apostles", + "url": "/the-twelve-apostles", + "description": "The twelve disciples chosen by Jesus to be witnesses of His ministry", + "count": "12 apostles" + }, + { + "name": "Women of the Bible", + "url": "/women-of-the-bible", + "description": "Notable women of Scripture and their significance in redemptive history", + "count": "12 women" + } + ], + "Theology": [ + { + "name": "Biblical Angels", + "url": "/biblical-angels", + "description": "Angelic beings mentioned in Scripture, including Michael, Gabriel, and the heavenly host", + "count": "12 entries" + }, + { + "name": "Names of God", + "url": "/names-of-god", + "description": "The revelation of God's names throughout Scripture and their meanings", + "count": "14 names" + }, + { + "name": "Parables of Jesus", + "url": "/parables", + "description": "The parables spoken by Christ to illustrate spiritual truths", + "count": "11 parables" + }, + { + "name": "Biblical Covenants", + "url": "/biblical-covenants", + "description": "Divine covenants established between God and His people", + "count": "7 covenants" + } + ], + "History & Culture": [ + { + "name": "Biblical Festivals", + "url": "/biblical-festivals", + "description": "The appointed feasts and holy days ordained in the Law of Moses", + "count": "7 festivals" + }, + { + "name": "Biblical Geography", + "url": "/biblical-maps", + "description": "Locations mentioned in Scripture and their historical significance", + "count": "Maps & places" + }, + { + "name": "Biblical Timeline", + "url": "/biblical-timeline", + "description": "Chronological overview of biblical events from Creation to Revelation", + "count": "Timeline" + }, + { + "name": "Genealogies", + "url": "/family-tree", + "description": "Family trees and lineages traced through Scripture", + "count": "Family trees" + } + ], + "Study Tools": [ + { + "name": "Study Guides", + "url": "/study-guides", + "description": "In-depth guides for studying biblical books, themes, and doctrines", + "count": "Multiple guides" + } + ] + } + + breadcrumbs = [ + {"text": "Home", "url": "/"}, + {"text": "Resources", "url": None} + ] + + return templates.TemplateResponse( + "resources.html", + { + "request": request, + "resources": resources, + "books": books, + "breadcrumbs": breadcrumbs + } + ) + + @app.get("/topics/{topic_name}", response_class=HTMLResponse) def topic_detail(request: Request, topic_name: str): """View verses for a specific topic""" diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index ad00c6e..af9ad55 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -853,6 +853,7 @@
Theological Studies — Comprehensive explorations of biblical themes: Biblical Angels, Biblical Prophets, Biblical Covenants, Biblical Festivals, Names of God, Parables of Jesus, The Twelve Apostles, and Women of the Bible.
+Browse all Theological Resources — A comprehensive collection of biblical studies organized by category, including detailed explorations of people, theology, history, and study tools.
+ +Theological Studies — Individual studies: Biblical Angels, Biblical Prophets, Biblical Covenants, Biblical Festivals, Names of God, Parables of Jesus, The Twelve Apostles, and Women of the Bible.
Topical Index — A systematic concordance of major theological themes, organizing Scripture by subject—Salvation, Prayer, Love, Faith, Forgiveness, the Holy Spirit, and other essential doctrines—each with carefully selected verses and explanatory notes.
diff --git a/kjvstudy_org/templates/resources.html b/kjvstudy_org/templates/resources.html new file mode 100644 index 0000000..2e86614 --- /dev/null +++ b/kjvstudy_org/templates/resources.html @@ -0,0 +1,119 @@ +{% extends "base.html" %} + +{% block title %}Theological Resources - KJV Study{% endblock %} +{% block description %}Explore comprehensive biblical resources including people, theology, history, and study tools{% endblock %} + +{% block head %} + +{% endblock %} + +{% block content %} +A Curated Collection of Biblical Study Materials
+ +These resources provide comprehensive explorations of biblical people, theological concepts, historical contexts, and study tools. Each section offers detailed treatments grounded in the Authorized King James Version, with careful attention to scriptural accuracy and theological precision.
+Beyond these theological resources, explore our Reading Plans for structured Bible study, browse the Topical Index for thematic studies, or use the Search to find specific passages.
+