chore: add review fields piped to markdown + title updates
This commit is contained in:
parent
1fb5acd132
commit
8c04f63637
5 changed files with 14 additions and 4 deletions
|
@ -23,7 +23,8 @@ const fetchAllMovies = async () => {
|
|||
plays,
|
||||
favorite,
|
||||
rating,
|
||||
description
|
||||
description,
|
||||
review
|
||||
`)
|
||||
.order('last_watched', { ascending: false })
|
||||
.range(rangeStart, rangeStart + PAGE_SIZE - 1)
|
||||
|
|
|
@ -19,6 +19,7 @@ const fetchAllShows = async () => {
|
|||
favorite,
|
||||
year,
|
||||
description,
|
||||
review,
|
||||
episodes (
|
||||
episode_number,
|
||||
season_number,
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -19,5 +19,9 @@ schema: movie
|
|||
{% if movie.lastWatched %}<p class="sub-meta">Last watched on: {{ movie.lastWatched | date: "%B %e, %Y" }}</p>{% endif %}
|
||||
<p class="sub-meta"><a href="https://themoviedb.org/movie/{{ movie.id }}">View on TMDB</a></p>
|
||||
</div>
|
||||
{% if movie.review %}
|
||||
<p>{{ movie.review | markdown }}</p>
|
||||
<hr class="large-spacing" />
|
||||
{% endif %}
|
||||
{% if movie.description %}<p><em>{{ movie.description }}</em></p>{% endif %}
|
||||
</article>
|
|
@ -19,5 +19,9 @@ schema: show
|
|||
{% if lastWatched %}<p class="sub-meta">Last watched on: {{ lastWatched | date: "%B %e, %Y" }}</p>{% endif %}
|
||||
<p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}">View on TMDB</a></p>
|
||||
</div>
|
||||
{% if show.review %}
|
||||
<p>{{ show.review | markdown }}</p>
|
||||
<hr class="large-spacing" />
|
||||
{% endif %}
|
||||
{% if show.description %}<p><em>{{ show.description }}</em></p>{% endif %}
|
||||
</article>
|
Reference in a new issue