diff --git a/kjvstudy_org/templates/interlinear.html b/kjvstudy_org/templates/interlinear.html deleted file mode 100644 index 27ec1b2..0000000 --- a/kjvstudy_org/templates/interlinear.html +++ /dev/null @@ -1,746 +0,0 @@ -{% 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 %} -
- - -{% if verse_data and interlinear_words %} - - -
-

- {{ verse_data.book }} {{ verse_data.chapter }}:{{ verse_data.verse }} - {% set ot_books = ['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'] %} - {% if verse_data.book in ot_books %} - Hebrew - {% else %} - Greek - {% endif %} -

-

"{{ verse_data.text }}"

-
- -
-

Original Language Analysis

-
- {% for word in interlinear_words %} -
- {{ word.original }} - {{ word.english }} - - {% 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 %} - -
-
- Original: - {{ word.original }} -
- {% if word.transliteration %} -
- Transliteration: - {{ word.transliteration }} -
- {% endif %} -
- Strong's: - {{ word.strongs or '—' }} -
-
- English: - {{ word.english }} -
- {% if word.parsing %} -
- Parsing: - {{ word.parsing }} -
- {% endif %} -
- Position: - #{{ word.position }} in verse -
- {% if word.definition %} -
- {{ word.definition }} -
- {% endif %} -
-
- {% endfor %} -
-
- - - -{% elif verse_requested %} -
-

{{ book }} {{ chapter }}:{{ verse }}

-

Interlinear data not yet available for this verse.

-
- - - -{% else %} -

- The interlinear Bible displays the original Hebrew (Old Testament) and Greek (New Testament) - alongside word-by-word English translations. Click any word to see its Strong's number, - grammatical parsing, and definition. -

- -
-

Search for a Verse

-
- - -
-
- -
-

Popular Passages

- -
- -
-

Old Testament (Hebrew)

- -
- -
-

New Testament (Greek)

- -

- Coverage: 31,031 verses with complete Hebrew and Greek interlinear data. -

-
-{% endif %} - -
-

Understanding the Display

- -
-
- - -{% endblock %}