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