chore: add review fields piped to markdown + title updates

This commit is contained in:
Cory Dransfeldt 2024-05-22 17:21:04 -07:00
parent 1fb5acd132
commit 8c04f63637
No known key found for this signature in database
5 changed files with 14 additions and 4 deletions

View file

@ -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>

View file

@ -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>