{% extends "base.html" %} {% block title %}{% if verse_data %}{{ verse_data.book }} {{ verse_data.chapter }}:{{ verse_data.verse }} - Interlinear Bible{% else %}Interlinear Bible{% endif %} - KJV Study{% endblock %} {% block description %}{% if verse_data %}Word-by-word Hebrew/Greek interlinear text for {{ verse_data.book }} {{ verse_data.chapter }}:{{ verse_data.verse }} with Strong's numbers and parsing.{% else %}Hebrew and Greek interlinear Bible with word-by-word translations and Strong's numbers.{% endif %}{% endblock %} {% block head %} {% endblock %} {% block content %}

Interlinear Bible

Hebrew and Greek text with word-by-word English translation

{% if verse_data and interlinear_words %}

{{ verse_data.book }} {{ verse_data.chapter }}:{{ verse_data.verse }}

{{ verse_data.text }}

Word-by-Word Analysis

{% for word in interlinear_words %}
#{{ word.position }}
{{ word.original }}
{{ word.transliteration }}
{% if word.strongs %} {% set lang = word.strongs[0]|lower %} {% set num = word.strongs[1:] %} {% if lang == 'g' %} {{ word.strongs }} {% elif lang == 'h' %} {{ word.strongs }} {% else %} {{ word.strongs }} {% endif %} {% endif %}
{{ word.english }}
{{ word.parsing }}
{{ word.definition }}
{% endfor %}
{% elif verse_requested %}

Interlinear data not yet available for {{ book }} {{ chapter }}:{{ verse }}.

We're continually expanding our interlinear database. Check the verses below for currently available interlinear texts.

{% endif %} {% if not verse_data and not verse_requested %}

Explore the Interlinear Bible

Browse by book or search for a specific passage:

Popular Passages

Browse by Book

Genesis Exodus Leviticus Numbers Deuteronomy Joshua Judges Ruth 1 Samuel 2 Samuel 1 Kings 2 Kings 1 Chronicles 2 Chronicles Ezra Nehemiah Esther Job Psalms Proverbs Ecclesiastes Song of Solomon Isaiah Jeremiah Lamentations Ezekiel Daniel Hosea Joel Amos Obadiah Jonah Micah Nahum Habakkuk Zephaniah Haggai Zechariah Malachi Matthew Mark Luke John Acts Romans 1 Corinthians 2 Corinthians Galatians Ephesians Philippians Colossians 1 Thessalonians 2 Thessalonians 1 Timothy 2 Timothy Titus Philemon Hebrews James 1 Peter 2 Peter 1 John 2 John 3 John Jude Revelation

Coverage: 31,031 verses with complete Hebrew and Greek interlinear text covering the entire Bible.

{% endif %}

Understanding the Interlinear Display

{% if not verse_data and not verse_requested %}

About the Interlinear Bible

The interlinear Bible provides a word-by-word breakdown of the original Hebrew (Old Testament) and Greek (New Testament) text alongside the English translation. This tool is invaluable for:

Select any verse above to see its word-by-word interlinear analysis. More verses are being added regularly to expand this resource.

{% endif %} {% endblock %}