fix: book references

This commit is contained in:
Cory Dransfeldt 2024-06-01 10:17:36 -07:00
parent abacd51cde
commit 52d80865ca
2 changed files with 4 additions and 4 deletions

View file

@ -41,8 +41,8 @@ schema: books
<a href="{{ book.url }}">
<p class="title"><strong>{{ book.title }}</strong></p>
</a>
{% if book.authors or book.categories %}
<p class="sub-meta">{% if book.authors %}By {{ book.authors }}{% endif %}{% if book.categories %}{% if book.authors %} • {% endif %}{{ book.categories }}{% endif %}</p>
{% if book.author %}
<p class="sub-meta">By {{ book.author }}</p>
{% endif %}
{% if book.description %}<blockquote class="description">{{ book.description }}</blockquote>{% endif %}
</div>