{% extends "base.html" %} {% block title %}{{ book }} {{ chapter }}:{{ verse_num }} - KJV Bible{% endblock %} {% block description %}{{ verse_text[:155] if verse_text else 'Study the Authorized King James Version Bible' }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_title %}{{ book }} {{ chapter }}:{{ verse_num }} - KJV Bible{% endblock %} {% block og_description %}{{ verse_text[:150] if verse_text else '' }}...{% endblock %} {% block og_image %}https://kjvstudy.org/og/verse/{{ book | urlencode }}/{{ chapter }}/{{ verse_num }}.png{% endblock %} {% block twitter_image %}https://kjvstudy.org/og/verse/{{ book | urlencode }}/{{ chapter }}/{{ verse_num }}.png{% endblock %} {% block structured_data %} {% endblock %} {% block head %} {% endblock %} {% block content %}

{{ book }} {{ chapter }}:{{ verse_num }}

Authorized King James Version

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

{{ verse_text | format_lists | red_letter(book, chapter, verse_num) | safe }}

{% if interlinear_words %}

Original Language Analysis

{% for word in interlinear_words %}
{{ word.original }} {{ word.english }} {% if word.strongs %} {{ word.strongs }} {% endif %}
{{ word.original }} {{ word.english }}
{% if word.transliteration %}
Pronunciation: {{ word.transliteration }}
{% endif %}
Strong's: {% if word.strongs %} {{ word.strongs }} {% else %} — {% endif %}
{% if word.parsing %}
Grammar: {{ word.parsing }}
{% endif %}
Word #: {{ word.position }} of {{ interlinear_words|length }}
{% if word.definition %}
{{ word.definition }}
{% endif %}
{% endfor %}
{% endif %} {% if cross_references %}

Cross References

{% for ref in cross_references %} {%- set ref_parts = ref.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] -%} {{ ref.ref }}{% if ref.text %}{{ ref.text }}{% endif %} {%- else -%} {{ ref.ref }} {%- endif -%} {%- else -%} {{ ref.ref }} {%- endif -%} {% endfor %}
{% endif %}
{% if commentary %}
{% if commentary.analysis %}

Analysis & Commentary

{{ commentary.analysis|split_paragraphs|safe }}
{% endif %} {% if commentary.historical %}

Historical Context

{{ commentary.historical|split_paragraphs|safe }}
{% endif %} {% if commentary.theological %}

Theological Significance

{{ commentary.theological|split_paragraphs|safe }}
{% endif %} {% if commentary.questions %}

Questions for Reflection

{% endif %} {% endif %} {% if related_content and (related_content.topics or related_content.people or related_content.resources or related_content.stories) %}

Related Resources

Explore related topics, people, and study resources to deepen your understanding of this passage.

{% if related_content.topics %}

Topics

{% endif %} {% if related_content.people %}

People

{% endif %} {% if related_content.resources %}

Study Resources

{% endif %} {% if related_content.stories %}

Bible Stories

{% endif %}
{% endif %} {% endblock %}