{% extends "base.html" %} {% block title %}{% if word %}Concordance: "{{ word }}" - {{ total_occurrences }} occurrences{% else %}Bible Concordance{% endif %} - KJV Study{% endblock %} {% block description %}{% if word %}Complete concordance showing all {{ total_occurrences }} occurrences of "{{ word }}" in the King James Bible with context.{% else %}Search the complete KJV Bible concordance to find every occurrence of any word.{% endif %}{% endblock %} {% block head %} {% endblock %} {% block content %}

Bible Concordance

Find every occurrence of any word in the King James Bible

{% if word %} {% if total_occurrences > 0 %}

The word "{{ word }}" appears {{ total_occurrences }} time{{ 's' if total_occurrences != 1 else '' }} in the King James Bible

{% if books_with_word %}

Found in {{ books_with_word|length }} book{{ 's' if books_with_word|length != 1 else '' }}: {{ books_with_word|join(', ') }}

{% endif %}
{% if occurrences_by_book %} {% for book_name, book_occurrences in occurrences_by_book.items() %}

{{ book_name }} ({{ book_occurrences|length }} occurrence{{ 's' if book_occurrences|length != 1 else '' }})

{% for occurrence in book_occurrences %} {% endfor %}
{% endfor %} {% endif %} {% else %}

No occurrences found for "{{ word }}". Try a different word or check your spelling.

Note: The KJV uses older English spellings. Try words like "loveth" instead of "loves", "cometh" instead of "comes".

{% endif %} {% endif %} {% if not word or total_occurrences == 0 %}

Using the Concordance

{% endif %}
{% endblock %}