mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
c5e71d652e
- Add description blocks to verse, chapter, book, and study guide templates - Include "KJV" in descriptions for better SEO (commonly searched term) - Verse pages now show verse text in description (155 chars) - Chapter pages show book/chapter info with first verse excerpt - Book pages include book introduction excerpt when available - Homepage and other index pages have descriptive meta tags - All templates now have proper SEO-friendly meta descriptions Verified all other resource templates already had descriptions. All tests passing (268 passed, 1 skipped). 🤖 Generated with Claude Code https://claude.com/claude-code Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
2.4 KiB
HTML
56 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Interlinear Bible Study - KJV Bible{% endblock %}
|
|
|
|
{% block description %}Study the KJV Bible word-by-word in Hebrew and Greek with transliteration, Strong's numbers, parsing, and definitions.{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Interlinear Bible Study</h1>
|
|
<p class="subtitle">Explore Scripture word-by-word in the original languages</p>
|
|
|
|
<div>
|
|
<h2>What is Interlinear Study?</h2>
|
|
<p>Interlinear Bible study allows you to examine Scripture in its original Hebrew (Old Testament) and Greek (New Testament) languages, word-by-word. Each word shows:</p>
|
|
<ul>
|
|
<li><strong>Original Text</strong> — The Hebrew or Greek word as written in ancient manuscripts</li>
|
|
<li><strong>Transliteration</strong> — How the word is pronounced in English letters</li>
|
|
<li><strong>Strong's Number</strong> — A reference number linking to detailed lexical information</li>
|
|
<li><strong>English Translation</strong> — How the word was translated in the KJV</li>
|
|
<li><strong>Parsing</strong> — Grammatical information (verb tense, noun case, etc.)</li>
|
|
<li><strong>Definition</strong> — The word's meaning and usage</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h2>How to Use</h2>
|
|
<p>Simply navigate to any verse page on this site. If interlinear data is available for that verse, you'll see a <strong>"Word-by-Word Analysis"</strong> section that you can expand to explore each word in detail.</p>
|
|
<p>Click on any Strong's number to view comprehensive lexical information at BibleHub.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h2>Featured Verses</h2>
|
|
<p>Explore these well-known passages with word-by-word analysis:</p>
|
|
<ul>
|
|
{% for verse in featured_verses %}
|
|
<li>
|
|
<a href="{{ verse.url }}"><strong>{{ verse.reference }}</strong></a> — {{ verse.note }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h2>Why Study Interlinearly?</h2>
|
|
<ul>
|
|
<li><strong>Deeper Understanding</strong> — Discover nuances lost in translation</li>
|
|
<li><strong>Word Studies</strong> — Trace how specific Greek or Hebrew words are used throughout Scripture</li>
|
|
<li><strong>Context</strong> — Understand the grammatical structure of passages</li>
|
|
<li><strong>Original Meaning</strong> — Get closer to what the original authors wrote</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<nav>
|
|
<p><a href="/">← Home</a></p>
|
|
</nav>
|
|
{% endblock %}
|