<!-- License: All Rights Reserved. Moses Frost. -->
<!-- AI Training: Requires commercial license. Contact info@mosesfrost.com -->

<div class="prompt"><span class="dim">moses@frost:~/podcast$</span> ls -la</div>

{% assign podcast_posts = site.thoughts | where: "categories", "podcast" | sort: 'date' | reverse %}
<p class="lshead">total {{ podcast_posts.size }} — /podcast · episodes from the Moses Frost Show</p>
<table class="listing"><thead><tr><th>perms</th><th>date</th><th>len</th><th>cat</th><th>title</th></tr></thead><tbody>
{% if podcast_posts.size > 0 %}{% for post in podcast_posts %}<tr data-href="{{ post.url }}"><td class="perm">-rw-r--r--</td><td class="c-date">{{ post.date | date: '%Y-%m-%d' }}</td><td class="c-size">{{ post.duration | default: '—' }}</td><td class="c-cat">podcast</td><td class="c-name"><a href="{{ post.url }}">{{ post.title }}</a></td></tr>{% endfor %}{% else %}<tr><td class="perm">drwxr-xr-x</td><td class="c-date">—</td><td class="c-size">0</td><td class="c-cat">podcast</td><td class="c-name">no episodes published yet — stay tuned</td></tr>{% endif %}
</tbody></table>
