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