{{ 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 %}

Scripture

{% for verse in verses %}

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

{% endfor %}
{% if glossary %}

Hebrew & Greek Word Studies

{% for study in glossary %}
{{ study.word }}{{ study.term }} ({{ study.translit }})
{{ study.meaning }}
{% if study.note %}
{{ study.note | 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 %}