{% extends "base.html" %} {% block title %}{{ topic_name }} - Topical Index - KJV Study{% endblock %} {% block description %}{{ topic.description }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ topic_name }}

{{ topic.description }}

{% if pdf_available and pdf_url %}
Download Topic PDF
{% endif %}

Overview

{% if topic.overview %} {{ topic.overview | safe }} {% else %}
This topical index organizes key Scripture passages related to {{ topic_name|lower }}. Each subtopic below addresses a specific aspect of this theme, with carefully selected verses that establish biblical teaching on the subject.
{% endif %}

Subtopics

{% for subtopic_name, subtopic_data in topic.subtopics.items() %}

{{ subtopic_name }}

{{ subtopic_data.description }}

    {% for verse in subtopic_data.verses %}
  • {% set ref_parts = verse.ref.rsplit(' ', 1) %} {% if ref_parts|length == 2 %} {% set book_name = ref_parts[0] %} {% set chapter_verse = ref_parts[1] %} {% if ':' in chapter_verse %} {% set ch = chapter_verse.split(':')[0] %} {% set v = chapter_verse.split(':')[1] %} {% if '-' not in v %} {# Single verse - make it a link #} {{ verse.ref }} {% else %} {# Verse range - link to chapter with anchor #} {% set v_start = v.split('-')[0] %} {% set v_end = v.split('-')[1] %} {{ verse.ref }} {% endif %} {% else %} {# No colon, just display text #} {{ verse.ref }} {% endif %} {% else %} {{ verse.ref }} {% endif %} {% if verse.note %} — {{ verse.note }} {% endif %}
  • {% endfor %}
{% endfor %}

Study Guidance

Topical study benefits from reading verses in their broader context. Click any reference above to view the complete passage and surrounding verses. Consider comparing how different biblical authors address the same theme across various contexts and time periods.

Cross-reference study deepens understanding. Many verses listed here connect to other passages—use the cross-references provided on individual verse pages to trace theological themes throughout Scripture.

← Back to all topics

{% endblock %}