diff --git a/src/pages/main/books/book.html b/src/pages/main/books/book.html index 55ffe3c2..382a19da 100644 --- a/src/pages/main/books/book.html +++ b/src/pages/main/books/book.html @@ -48,6 +48,9 @@ schema: book

View on Open Library

- {% if book.review %}{{ book.review | markdown }}{% endif %} - {% if book.description %}

{{ book.description }}

{% endif %} + {% if book.review %} + {{ book.review | markdown }} +
+ {% endif %} + {% if book.description %}{{ book.description }}{% endif %} \ No newline at end of file diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html index fc41ef94..d265c39a 100644 --- a/src/pages/main/watching/movie.html +++ b/src/pages/main/watching/movie.html @@ -42,5 +42,5 @@ schema: movie {{ movie.review | markdown }}
{% endif %} - {% if movie.description %}

{{ movie.description }}

{% endif %} + {% if movie.description %}{{ movie.description }}{% endif %} \ No newline at end of file diff --git a/src/pages/main/watching/show.html b/src/pages/main/watching/show.html index 2ac3ef27..64a2e188 100644 --- a/src/pages/main/watching/show.html +++ b/src/pages/main/watching/show.html @@ -38,8 +38,8 @@ schema: show

View on TMDB

{% if show.review %} -

{{ show.review | markdown }}

+ {{ show.review | markdown }}
{% endif %} - {% if show.description %}

{{ show.description }}

{% endif %} + {% if show.description %}{{ show.description }}{% endif %} \ No newline at end of file