From 5485e19b27229bd3ce0bcf1bbb2dfa76cd7764cf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 5 Dec 2025 12:51:30 -0500 Subject: [PATCH] Add link_verses filter to 11 templates missing it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed biblical_angels, biblical_covenants, biblical_festivals, biblical_prophets, names_of_god, parables, parable_detail, and their PDF variants to apply link_verses | link_names filters. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/biblical_angels.html | 2 +- kjvstudy_org/templates/biblical_covenants.html | 2 +- kjvstudy_org/templates/biblical_festivals.html | 2 +- kjvstudy_org/templates/biblical_prophets.html | 2 +- kjvstudy_org/templates/biblical_prophets_pdf.html | 2 +- kjvstudy_org/templates/biblical_timeline_pdf.html | 2 +- kjvstudy_org/templates/names_of_god.html | 2 +- kjvstudy_org/templates/parable_detail.html | 2 +- kjvstudy_org/templates/parables.html | 2 +- kjvstudy_org/templates/parables_pdf.html | 2 +- kjvstudy_org/templates/resource_index_pdf.html | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/kjvstudy_org/templates/biblical_angels.html b/kjvstudy_org/templates/biblical_angels.html index 084a5bb..b8512f0 100644 --- a/kjvstudy_org/templates/biblical_angels.html +++ b/kjvstudy_org/templates/biblical_angels.html @@ -233,7 +233,7 @@ document.body.dataset.resourceReader = 'true';

{{ angel.title }}

-

{{ angel.description | safe }}

+

{{ angel.description | link_verses | link_names | safe }}

{% if angel.verses %} diff --git a/kjvstudy_org/templates/biblical_covenants.html b/kjvstudy_org/templates/biblical_covenants.html index f9012d6..2e8a8f8 100644 --- a/kjvstudy_org/templates/biblical_covenants.html +++ b/kjvstudy_org/templates/biblical_covenants.html @@ -233,7 +233,7 @@ document.body.dataset.resourceReader = 'true';

{{ covenant.title }}

-

{{ covenant.description | safe }}

+

{{ covenant.description | link_verses | link_names | safe }}

{% if covenant.verses %} diff --git a/kjvstudy_org/templates/biblical_festivals.html b/kjvstudy_org/templates/biblical_festivals.html index 17e564c..a195ab0 100644 --- a/kjvstudy_org/templates/biblical_festivals.html +++ b/kjvstudy_org/templates/biblical_festivals.html @@ -233,7 +233,7 @@ document.body.dataset.resourceReader = 'true';

{{ festival.title }}

-

{{ festival.description | safe }}

+

{{ festival.description | link_verses | link_names | safe }}

{% if festival.verses %} diff --git a/kjvstudy_org/templates/biblical_prophets.html b/kjvstudy_org/templates/biblical_prophets.html index ec97c56..c98f65f 100644 --- a/kjvstudy_org/templates/biblical_prophets.html +++ b/kjvstudy_org/templates/biblical_prophets.html @@ -233,7 +233,7 @@ document.body.dataset.resourceReader = 'true';

{{ prophet.title }}

-

{{ prophet.description | safe }}

+

{{ prophet.description | link_verses | link_names | safe }}

{% if prophet.verses %} diff --git a/kjvstudy_org/templates/biblical_prophets_pdf.html b/kjvstudy_org/templates/biblical_prophets_pdf.html index d180207..4779115 100644 --- a/kjvstudy_org/templates/biblical_prophets_pdf.html +++ b/kjvstudy_org/templates/biblical_prophets_pdf.html @@ -115,7 +115,7 @@ {% for name, prophet in prophets.items() %}

{{ name }} — {{ prophet.title }}

-
{{ prophet.description | safe }}
+
{{ prophet.description | link_verses | link_names | safe }}
{% if prophet.verses %}
diff --git a/kjvstudy_org/templates/biblical_timeline_pdf.html b/kjvstudy_org/templates/biblical_timeline_pdf.html index b715a94..5720911 100644 --- a/kjvstudy_org/templates/biblical_timeline_pdf.html +++ b/kjvstudy_org/templates/biblical_timeline_pdf.html @@ -151,7 +151,7 @@ {% for event in events %}

{{ event.title }} {% if event.date %}({{ event.date }}{% if event.alt_dates %} • {{ event.alt_dates }}{% endif %}){% endif %}

-
{{ event.description | safe }}
+
{{ event.description | link_verses | link_names | safe }}
{% if event.verses %}
{% for verse in event.verses %} diff --git a/kjvstudy_org/templates/names_of_god.html b/kjvstudy_org/templates/names_of_god.html index 2a96a33..7adee5f 100644 --- a/kjvstudy_org/templates/names_of_god.html +++ b/kjvstudy_org/templates/names_of_god.html @@ -229,7 +229,7 @@

{{ name.title }}

-

{{ name.description | safe }}

+

{{ name.description | link_verses | link_names | safe }}

{% if name.verses %} diff --git a/kjvstudy_org/templates/parable_detail.html b/kjvstudy_org/templates/parable_detail.html index 6a4c43c..327417c 100644 --- a/kjvstudy_org/templates/parable_detail.html +++ b/kjvstudy_org/templates/parable_detail.html @@ -85,7 +85,7 @@

Description

- {{ parable.description | safe }} + {{ parable.description | link_verses | link_names | safe }}
diff --git a/kjvstudy_org/templates/parables.html b/kjvstudy_org/templates/parables.html index a82f984..d8745eb 100644 --- a/kjvstudy_org/templates/parables.html +++ b/kjvstudy_org/templates/parables.html @@ -247,7 +247,7 @@ document.body.dataset.resourceReader = 'true'; {% endif %}
-

{{ parable.description | safe }}

+

{{ parable.description | link_verses | link_names | safe }}

{% if parable.verses %} diff --git a/kjvstudy_org/templates/parables_pdf.html b/kjvstudy_org/templates/parables_pdf.html index 43e5cba..21f2c46 100644 --- a/kjvstudy_org/templates/parables_pdf.html +++ b/kjvstudy_org/templates/parables_pdf.html @@ -116,7 +116,7 @@ {% for name, parable in parables.items() %}

{{ name }} — {{ parable.title }}

-
{{ parable.description | safe }}
+
{{ parable.description | link_verses | link_names | safe }}
{% if parable.verses %}
diff --git a/kjvstudy_org/templates/resource_index_pdf.html b/kjvstudy_org/templates/resource_index_pdf.html index 8ea5b3b..6011431 100644 --- a/kjvstudy_org/templates/resource_index_pdf.html +++ b/kjvstudy_org/templates/resource_index_pdf.html @@ -117,7 +117,7 @@

{{ name }}{% if entry.title %} — {{ entry.title }}{% endif %}

{% if entry.description %} -
{{ entry.description | safe }}
+
{{ entry.description | link_verses | link_names | safe }}
{% endif %} {% if entry.verses %}