From 26572cef9c4f0aa4cc8fafad0758551a8f08705b Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 5 Jun 2024 11:28:45 -0700 Subject: [PATCH] chore: cleanup --- src/pages/main/books/book.html | 7 +++++-- src/pages/main/watching/movie.html | 2 +- src/pages/main/watching/show.html | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) 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