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>
44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Bible Study Guides - KJV Bible{% endblock %}
|
|
|
|
{% block description %}Structured KJV Bible study guides covering foundational Christian truths, character development, and biblical themes from the King James Version.{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
<h1>Bible Study Guides</h1>
|
|
<p class="subtitle"><a href="/">Authorized King James Version</a></p>
|
|
|
|
<section>
|
|
<p><span class="newthought">These study guides</span> offer structured explorations of foundational Christian truths, character development, and biblical themes. Each guide includes relevant Scripture passages and reflections for deeper understanding of God's Word.</p>
|
|
</section>
|
|
|
|
{% for category, guides in study_guides.items() %}
|
|
<section>
|
|
<h2>{{ category }}</h2>
|
|
|
|
{% for guide in guides %}
|
|
<p>
|
|
<strong><a href="/study-guides/{{ guide.slug }}">{{ guide.title }}</a></strong><label for="sn-{{ guide.slug }}" class="margin-toggle sidenote-number"></label>
|
|
<input type="checkbox" id="sn-{{ guide.slug }}" class="margin-toggle"/>
|
|
<span class="sidenote">
|
|
<strong>Key Verses:</strong><br/>
|
|
{% for verse_ref in guide.verse_refs[:5] %}
|
|
<a href="{{ verse_ref.url }}">{{ verse_ref.text }}</a>{% if not loop.last %}, {% endif %}
|
|
{% endfor %}
|
|
{% if guide.verse_refs|length > 5 %}
|
|
<br/><em>+{{ guide.verse_refs|length - 5 }} more</em>
|
|
{% endif %}
|
|
</span>
|
|
— {{ guide.description }}
|
|
</p>
|
|
{% endfor %}
|
|
</section>
|
|
{% endfor %}
|
|
|
|
<nav>
|
|
<p><a href="/">← Home</a></p>
|
|
</nav>
|
|
{% endblock %}
|