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:
2025-12-06 14:32:27 -05:00
parent 858c686614
commit a8b64d6b26
@@ -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 %}