diff --git a/src/_data/movies.js b/src/_data/movies.js index 74ab6c03..0845ae2a 100644 --- a/src/_data/movies.js +++ b/src/_data/movies.js @@ -23,7 +23,8 @@ const fetchAllMovies = async () => { plays, favorite, rating, - description + description, + review `) .order('last_watched', { ascending: false }) .range(rangeStart, rangeStart + PAGE_SIZE - 1) diff --git a/src/_data/tv.js b/src/_data/tv.js index 083a4d5c..560da610 100644 --- a/src/_data/tv.js +++ b/src/_data/tv.js @@ -19,6 +19,7 @@ const fetchAllShows = async () => { favorite, year, description, + review, episodes ( episode_number, season_number, diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 61e6e675..16b99bec 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -7,7 +7,7 @@ {% elsif book.title %} Books • {{ book.title }} • {{ meta.siteName }} {% elsif movie.title %} - Movies • {{ movie.title }} • {{ meta.siteName }} + Movies • {{ movie.title }}{% if movie.rating %} ({{ movie.rating }}){% endif %} • {{ meta.siteName }} {% elsif movie.title %} Shows • {{ show.title }} • {{ meta.siteName }} {% else %} @@ -20,9 +20,9 @@ {% elsif book.description %} {{ book.description }} {% elsif movie.description %} - {{ movie.description }} + {% if movie.review %}{{ movie.review }}{% else %}{{ movie.description }}{% endif %} {% elsif show.description %} - {{ show.description }} + {% if show.review %}{{ show.review }}{% else %}{{ show.description }}{% endif %} {% elsif description %} {{ description }} {% else %} diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html index 75934ebc..7b41a383 100644 --- a/src/pages/main/watching/movie.html +++ b/src/pages/main/watching/movie.html @@ -19,5 +19,9 @@ schema: movie {% if movie.lastWatched %}

Last watched on: {{ movie.lastWatched | date: "%B %e, %Y" }}

{% endif %}

View on TMDB

+ {% if movie.review %} +

{{ movie.review | markdown }}

+
+ {% 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 7f7d84c4..4780c0a0 100644 --- a/src/pages/main/watching/show.html +++ b/src/pages/main/watching/show.html @@ -19,5 +19,9 @@ schema: show {% if lastWatched %}

Last watched on: {{ lastWatched | date: "%B %e, %Y" }}

{% endif %}

View on TMDB

+ {% if show.review %} +

{{ show.review | markdown }}

+
+ {% endif %} {% if show.description %}

{{ show.description }}

{% endif %} \ No newline at end of file