From 939cbbdbcb9ff0e383b11fbf5e96b9ba953e9539 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 29 Nov 2025 15:39:24 -0500 Subject: [PATCH] Delete unused interlinear.html template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/interlinear.html | 746 ------------------------ 1 file changed, 746 deletions(-) delete mode 100644 kjvstudy_org/templates/interlinear.html 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

-
- - -
-
- - - - - -
-

New Testament (Greek)

- -

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

-
-{% endif %} - -
-

Understanding the Display

-
    -
  • Original text — Hebrew (OT) or Greek (NT) as written in ancient manuscripts
  • -
  • English — The KJV translation of each word
  • -
  • Strong's number — Reference for concordance lookup (H=Hebrew, G=Greek)
  • -
  • Click any word — See parsing, position, and full definition
  • -
-
-
- - -{% endblock %}