{% extends "base.html" %} {% block title %}Commentary Index - KJV Study{% endblock %} {% block description %}Browse all {{ "{:,}".format(total_verses) }} verses with in-depth theological commentary{% endblock %} {% block content %}

Commentary Index

{{ "{:,}".format(total_verses) }} verses across {{ total_books }} books with comprehensive theological analysis

This index lists every verse in the KJV Bible that has enhanced commentary available. Each commentary includes:

Click any verse reference to read its commentary.

{% for book, chapters in commentary_index.items() %}

{{ book }}

{% for chapter, verses in chapters.items() %}
Chapter {{ chapter }}: {% for verse in verses %}{{ verse }}{% if not loop.last %}, {% endif %}{% endfor %} ({{ verses|length }} {% if verses|length == 1 %}verse{% else %}verses{% endif %})
{% endfor %}
{% endfor %}

Coverage Statistics

Total Books with Commentary {{ total_books }} of 66
Total Verses with Commentary {{ "{:,}".format(total_verses) }} of 31,102
Coverage Percentage {{ "%.1f"|format((total_verses / 31102) * 100) }}%
{% endblock %}