Files
kjvstudy.org/kjvstudy_org/templates/verse_of_the_day.html
kennethreitz b78b86a2f5 Add comprehensive theological resources and collapsible sidebar
- Implement 8 theological resource pages with scholarly content:
  * Biblical Angels: Named angels, orders, and activities
  * Biblical Prophets: Major and minor prophets
  * Biblical Covenants: Five major covenants
  * Biblical Festivals: Spring and fall feasts
  * Names of God: Hebrew names and titles
  * Parables of Jesus: Categorized with interpretations
  * The Twelve Apostles: All twelve with biographies
  * Women of the Bible: Notable women throughout Scripture

- Add collapsible sidebar navigation:
  * Toggle button with +/- icons
  * Starts collapsed by default
  * State persists via localStorage
  * Clean positioning and animations

- Enhance homepage with theological studies section
- All pages use Tufte CSS with sidenotes
- All pages include verse linking and name linking
- Consistent scholarly tone with Hebrew/Greek annotations

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-20 18:50:40 -05:00

50 lines
2.4 KiB
HTML

{% extends "base.html" %}
{% block title %}Verse of the Day - {{ daily_verse.reference }} - KJV Study{% endblock %}
{% block description %}Today's verse from the King James Bible: {{ daily_verse.reference }} - {{ daily_verse.text[:100] }}...{% endblock %}
{% block content %}
<h1>Verse of the Day</h1>
<p class="subtitle">{{ daily_verse.date }}</p>
<div class="epigraph">
<blockquote>
<p>{{ daily_verse.text | link_names | safe }}</p>
<footer><a href="/book/{{ daily_verse.book }}/chapter/{{ daily_verse.chapter }}/verse/{{ daily_verse.verse }}">{{ daily_verse.reference }}</a></footer>
</blockquote>
</div>
<section>
<h2>For Meditation</h2>
<p><span class="newthought">The practice</span> of daily meditation upon Scripture has been commended by the godly throughout the ages. As the Psalmist declares, "Blessed is the man... [whose] delight is in the law of the LORD; and in his law doth he meditate day and night." Consider, as you reflect upon this portion of God's Word:</p>
<p>What does this verse reveal concerning the character and purposes of the Almighty? How might its truth be applied to the circumstances of your own life? What action or change of heart does the Holy Spirit call forth in response to this divine instruction?</p>
</section>
<section>
<h2>Further Study</h2>
<p>The careful student of Scripture will wish to examine this verse within its fuller context. Proceed to <a href="/book/{{ daily_verse.book }}">the book of {{ daily_verse.book }}</a>, or read <a href="/book/{{ daily_verse.book }}/chapter/{{ daily_verse.chapter }}">chapter {{ daily_verse.chapter }} entire</a>, or consult the <a href="/book/{{ daily_verse.book }}/chapter/{{ daily_verse.chapter }}/verse/{{ daily_verse.verse }}">full commentary</a> upon this passage.</p>
</section>
<section>
<h2>Archive of Recent Verses</h2>
<p>For those who would review the portions appointed for meditation during the past month:</p>
<table>
<thead>
<tr>
<th>Date</th>
<th>Scripture Reference</th>
</tr>
</thead>
<tbody>
{% for verse in past_verses %}
<tr>
<td>{{ verse.date }}</td>
<td><a href="/book/{{ verse.book }}/chapter/{{ verse.chapter }}/verse/{{ verse.verse }}">{{ verse.reference }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
{% endblock %}