{% extends "base.html" %} {% block title %}{{ book }} {{ chapter }} - Interlinear Bible - KJV Study{% endblock %} {% block description %}Word-by-word Hebrew/Greek interlinear text for {{ book }} chapter {{ chapter }} with Strong's numbers.{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if pdf_available and pdf_url %} {% endif %} {% for item in verses_with_interlinear %}
{{ item.verse.verse }} {{ item.verse.text }}
{% if item.interlinear_words %}
{% for word in item.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 {{ item.interlinear_words|length }}
{% if word.definition %}
{{ word.definition }}
{% endif %}
{% endfor %}
{% else %}

Interlinear data not available for this verse.

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