diff --git a/src/pages/main/books/book.html b/src/pages/main/books/book.html index fdfc2618..0a57048f 100644 --- a/src/pages/main/books/book.html +++ b/src/pages/main/books/book.html @@ -35,8 +35,8 @@ schema: book

{{ book.title }}

{% if book.rating %}

{{ book.rating }}

{% endif %} - {% if book.authors or book.categories %} -

{% if book.authors %}By {{ book.authors }}{% endif %}{% if book.categories %}{% if book.authors %} • {% endif %}{{ book.categories }}{% endif %}

+ {% if book.author %} +

By {{ book.author }}

{% endif %} {% if book.status == 'finished' %}

Finished on: {{ book.date | date: "%B %e, %Y" }}

{% endif %}

View on Open Library

diff --git a/src/pages/main/books/index.html b/src/pages/main/books/index.html index de667289..53a5c81a 100644 --- a/src/pages/main/books/index.html +++ b/src/pages/main/books/index.html @@ -41,8 +41,8 @@ schema: books

{{ book.title }}

- {% if book.authors or book.categories %} -

{% if book.authors %}By {{ book.authors }}{% endif %}{% if book.categories %}{% if book.authors %} • {% endif %}{{ book.categories }}{% endif %}

+ {% if book.author %} +

By {{ book.author }}

{% endif %} {% if book.description %}
{{ book.description }}
{% endif %}