v6/site/tv.html

34 lines
1.1 KiB
HTML
Raw Normal View History

2025-02-20 10:13:26 -05:00
{% extends "default" %}
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
{% block titlevariable %}
{% set title = "TV" %}
{% endblock %}
2022-12-10 13:15:32 -05:00
{% block content -%}
2025-02-20 10:13:26 -05:00
<h1 class="headline">TV Commentary</h1>
2022-12-10 13:15:32 -05:00
2025-02-20 10:13:26 -05:00
<div class="body-content">
<p>
Sometimes when I'm watching TV shows (mostly sci-fi ones) I write commentary on them (don't expect anything too insightful). I generally post these on the <a href="https://social.shadowfacts.net/users/shadowfacts" data-link="social.shadowfacts.net/users/shadowfacts">fediverse</a> and publish them here at the end of a season. Some of the series below are incomplete, for various reasons. Spoilers abound, obviously.
2022-12-10 13:15:32 -05:00
</p>
</div>
2025-02-20 10:13:26 -05:00
{% for entry in index_entries %}
<div>
<h2 class="headline">
<a href="/tv/{{ entry.slug }}/">{{ entry.title }}</a>
</h2>
<p class="article-meta">
{{ entry.episode_count }}
entr{% if entry.episode_count == 1 %}y{% else %}ies{% endif %}.
Last updated on
<time datetime="{{ entry.last_updated | iso_datetime }}">
{{ entry.last_updated | pretty_date }}.
</time>
</p>
</div>
2022-12-10 13:15:32 -05:00
{% endfor %}
{%- endblock %}