{% extends "_base.html" %} {% block title %}{{ show.title }} — offshore{% endblock %} {% block content %}
{{ show.description }}
Feed previously generated — download podcast.xml.
{% endif %}| # | Title | pub_date | Duration | Status | |
|---|---|---|---|---|---|
| {{ ep.episode_number if ep.episode_number is not none else '—' }} |
{{ ep.title }}
{{ ep.guid }}
|
{{ ep.pub_date.strftime('%Y-%m-%d %H:%M') }} | {% if ep.audio.duration_seconds %} {% set total = ep.audio.duration_seconds|int %} {% set h = total // 3600 %}{% set m = (total % 3600) // 60 %}{% set s = total % 60 %} {% if h %}{{ '%d:%02d:%02d'|format(h, m, s) }}{% else %}{{ '%d:%02d'|format(m, s) }}{% endif %} {% else %} — {% endif %} | {% if ep.audio.length_bytes and ep.audio.mime_type %} probed {% else %} unprobed {% endif %} | Edit |