mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
16 lines
351 B
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>
|