From 52bb08bf7083a00ad16d81069adcd9082a99cc90 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 29 Nov 2025 16:52:15 -0500 Subject: [PATCH] Redesign Strong's entry page with card-style layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Large centered word card with original Hebrew/Greek - Definition, KJV translations, and derivation in separate info cards - Color-coded left borders for each card type - Improved navigation with prev/next buttons - Dark mode support - Mobile responsive 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/strongs_entry.html | 286 +++++++++++++++------- 1 file changed, 192 insertions(+), 94 deletions(-) diff --git a/kjvstudy_org/templates/strongs_entry.html b/kjvstudy_org/templates/strongs_entry.html index 6bd7dec..8ec5b20 100644 --- a/kjvstudy_org/templates/strongs_entry.html +++ b/kjvstudy_org/templates/strongs_entry.html @@ -6,58 +6,40 @@ {% block head %} {% endblock %} {% block content %} -
-
-

+

+

Strong's Concordance

+

Hebrew & Greek Lexicon

+ +
+
{{ entry.strongs }} {{ entry.language }} -

-

{{ entry.word }}

-

{{ entry.transliteration }}

+
+
{{ entry.word }}
+
{{ entry.transliteration }}
{% if entry.pronunciation %} -

Pronunciation: {{ entry.pronunciation }}

+
{{ entry.pronunciation }}
{% endif %} -
+ -
-

Definition

-

{{ entry.definition }}

-
+
+
+

Definition

+

{{ entry.definition }}

+
- {% if entry.kjv_usage %} -
-

KJV Translation

-

{{ entry.kjv_usage }}

-
- {% endif %} - - {% if entry.derivation %} -
-

Derivation

-

{{ entry.derivation | linkify_strongs | safe }}

-
- {% endif %} - -
+ + -
+ {% endblock %}