36 lines
962 B
HTML
36 lines
962 B
HTML
|
{% extends "layout/default.html" %}
|
||
|
|
||
|
{% block title%}TV{% endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<h1 class="article-title">
|
||
|
TV Commentary
|
||
|
</h1>
|
||
|
|
||
|
<div class="article-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.
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
{% for show in shows %}
|
||
|
<div class="show">
|
||
|
<a href="/tv/{{ show.slug }}/">
|
||
|
<h2>{{ show.metadata.title }}</h2>
|
||
|
<p>
|
||
|
{{ show.episodes.len() }} entries
|
||
|
•
|
||
|
last updated
|
||
|
<time datetime="{{ show.last_updated()|iso_date }}">
|
||
|
{{ show.last_updated()|pretty_date }}
|
||
|
</time>
|
||
|
</p>
|
||
|
</a>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
|
||
|
{%- endblock %}
|
||
|
|
||
|
|