Simplify verse page actions: Copy Verse Text, Download PDF

Removed Tweet button, renamed buttons for clarity, removed
section heading.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-05 12:54:44 -05:00
parent 8065e95bc8
commit 020872efaa
+2 -7
View File
@@ -1029,15 +1029,10 @@ a.crossref-pill:hover {
{% endif %}
<div class="share-section">
<h3 class="section-heading">Share</h3>
<div class="share-pills">
<button class="share-pill" onclick="copyToClipboard()" id="copy-btn">Copy</button>
<a class="share-pill"
href="https://twitter.com/intent/tweet?text={{ verse_text | striptags | urlencode }}%20—%20{{ book }}%20{{ chapter }}:{{ verse_num }}%20(KJV)&url={{ request.url }}"
target="_blank"
rel="noopener">Tweet</a>
<button class="share-pill" onclick="copyToClipboard()" id="copy-btn">Copy Verse Text</button>
{% if pdf_available and pdf_url %}
<a class="share-pill" href="{{ pdf_url }}">PDF</a>
<a class="share-pill" href="{{ pdf_url }}">Download PDF</a>
{% endif %}
</div>
</div>