--- title: Podroll description: Some podcasts that I enjoy! permalink: "podroll/index.html" --- {% set data = collections.podcast | reverse %}

Podroll

Some podcasts that I enjoy!

{% for item in data %}

{{ item.data.title }}

{% if item.data.isCompleted %}Completed{% endif %}

{{ item.data.description }}

{% if item.data.url %}Website{% endif %} {% if item.data.rss %}RSS{% endif %}
{% if item.content %}
{% if item.data.moreText %} {{ item.data.moreText }} {% else %} More info {% endif %}
{{ item.content | safe }}
{% endif %}
{% endfor %}