chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-06-05 11:28:45 -07:00
parent 0fb0c9d65f
commit 26572cef9c
3 changed files with 8 additions and 5 deletions

View file

@ -48,6 +48,9 @@ schema: book
<p class="sub-meta"><a href="https://openlibrary.org/isbn/{{ book.isbn }}" title="View {{ book.title | escape }} on Open Library">View on Open Library</a></p>
</div>
</div>
{% if book.review %}{{ book.review | markdown }}{% endif %}
{% if book.description %}<p><em>{{ book.description }}</em></p>{% endif %}
{% if book.review %}
{{ book.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if book.description %}<em>{{ book.description }}</em>{% endif %}
</article>