safing-web/podcast/index.html

16 lines
351 B
HTML

---
title: The Safing Podcast
layout: podcast
---
<div class="ui divided items">
{% assign sorted_podcasts = site.podcasts | reverse %}
{% for episode in sorted_podcasts %}
<div class="item">
<div class="middle aligned content">
<a href="{{ episode.url }}">{{ episode.title }}</a>
</div>
</div>
{% endfor %}
</div>