25 lines
875 B
XML
25 lines
875 B
XML
---
|
|
layout:
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
|
|
<channel xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:media="http://search.yahoo.com/mrss/">
|
|
<title>rtyler's podcast picks</title>
|
|
<link href="{{ site.url }}/podcast-picks.xml" rel="self"/>
|
|
<link href="{{ site.url }}"/>
|
|
<pubDate>{{ site.time | date_to_xmlschema }}</pubDate>
|
|
<ttl>120</ttl>
|
|
|
|
{% for e in site.data.podcast.picks reversed %}
|
|
<item>
|
|
<title>{{e.title}}</title>
|
|
<description>
|
|
{{e.description | xml_escape}}
|
|
</description>
|
|
<enclosure url="{{e.enclosure.url}}"
|
|
type="{{e.enclosure.type}}"/>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|