{{ movie.title }}{%- if movie.year and not movie.rating %} ({{ movie.year }}){%- endif -%}
{%- if movie.rating -%}
{{ movie.rating }}
{%- if movie.year %}
({{ movie.year }})
{%- endif -%}
{% endif -%}
{%- if movie.favorite -%}
{% tablericon "heart" %} This is one of my favorite movies!
{%- endif -%}
{%- if movie.tattoo -%}
{% tablericon "needle" %} I have a tattoo inspired by this movie!
{%- endif -%}
{%- if movie.collected -%}
{% tablericon "circle-check" %} This movie is in my collection!
{%- endif -%}
{%- if movie.lastWatched -%}Last watched on {{ movie.lastWatched | date: "%B %e, %Y" }}.{%- endif -%}
{% if movie.review %}
{% render "blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
My thoughts
{{ movie.review | markdown }}
{% endif %}
{% render "blocks/associated-media.liquid",
artists: movie.artists,
books: movie.books,
genres: movie.genres,
movies: movie.related_movies,
posts: movie.posts,
shows: movie.shows
%}
{% if movie.description %}
Overview
{{ movie.description | markdown }}
{% endif %}