mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Show devotional title in VOTD archive table
Adds a Title column showing each day's devotional title, making the archive more browsable and giving people a reason to explore past entries. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -364,6 +364,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Title</th>
|
||||
<th>Scripture</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -371,6 +372,7 @@
|
||||
{% for verse in past_verses %}
|
||||
<tr>
|
||||
<td><a href="/verse-of-the-day/{{ verse.date }}">{{ verse.date }}</a></td>
|
||||
<td><a href="/verse-of-the-day/{{ verse.date }}">{% if verse.devotional %}{{ verse.devotional.title }}{% else %}—{% endif %}</a></td>
|
||||
<td><a href="/book/{{ verse.book }}/chapter/{{ verse.chapter }}/verse/{{ verse.verse }}">{{ verse.reference }}</a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user