{{ book }} {{ chapter }}

{% if book_data and book_data.full_title %}

{{ book_data.full_title }}

{% endif %}

Chapter {{ chapter }} of {{ total_chapters }} · {{ verse_count }} Verses · Authorized King James Version

{% if book_data and book_data.description and chapter == 1 %}

{{ book_data.description }}

{% if book_data.author or book_data.date_written %}

{% if book_data.author %}Author: {{ book_data.author }}{% endif %} {% if book_data.author and book_data.date_written %} · {% endif %} {% if book_data.date_written %}Written: {{ book_data.date_written }}{% endif %}

{% endif %}
{% endif %}
{% for verse in verses %} {% set has_stanza_break = is_poetry and verse.verse in stanza_breaks %} {% set has_section_heading = section_headings and verse.verse in section_headings %} {% if has_stanza_break and has_section_heading %}

{{ section_headings[verse.verse] }}

{% elif has_section_heading %}

{{ section_headings[verse.verse] }}

{% endif %}

{{ verse.verse }} {{ verse.text | safe }}

{% if has_stanza_break and has_section_heading %}
{% endif %} {% endfor %}
{% if glossary %}

Hebrew & Greek Word Studies

{% for study in glossary %}
{{ study.word }}{{ study.term }} ({{ study.translit }})
{{ study.meaning }}
{% if study.note %}
{{ study.note | strip_links | safe }}
{% endif %}
{% endfor %}
{% endif %}

Cross References

{% for verse in verses %} {% set commentary = commentaries[verse.verse] if commentaries and verse.verse in commentaries else none %} {% if commentary and commentary.cross_reference_groups and commentary.cross_reference_groups|length > 0 %}
{{ book }} {{ chapter }}:{{ verse.verse }} {% for group in commentary.cross_reference_groups %} {{ group.description }}: {% for ref in group.refs %}{{ ref }}{% if not loop.last %}; {% endif %}{% endfor %}{% if not loop.last %}. {% endif %} {% endfor %}
{% endif %} {% endfor %}