-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodcast.xml
43 lines (42 loc) · 2.13 KB
/
podcast.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
layout: null
---
<?xml version='1.0' encoding='utf-8'?>
<rss version='2.0' xmlns:content='http://purl.org/rss/1.0/modules/content/' xmlns:itunes='http://www.itunes.com/dtds/podcast-1.0.dtd'>
<channel>
<title>{{ site.podcast.title }}</title>
<description>{{ site.podcast.description }}</description>
<link>{{ '/' | absolute_url }}</link>
<itunes:author>{{ site.podcast.author }}</itunes:author>
<itunes:email>{{ site.podcast.email }}</itunes:email>
<itunes:image href='{{ site.podcast.logo | absolute_url }}'/>
<language>{{ site.podcast.language }}</language>
<copyright>copyright © {{ site.podcast.author }}</copyright>
<itunes:owner>
<itunes:name>{{ site.podcast.author }}</itunes:name>
<itunes:email>{{ site.podcast.email }}</itunes:email>
</itunes:owner>
<itunes:category text='{{ site.podcast.category }}'>
<itunes:category text='{{ site.podcast.subcategory }}'/>
</itunes:category>
<itunes:type>{{ site.podcast.type }}</itunes:type>
<itunes:explicit>{{ site.podcast.explicit }}</itunes:explicit>
<itunes:complete>{{ site.podcast.complete }}</itunes:complete>
<itunes:block>{{ site.podcast.block }}</itunes:block>
{% for post in site.categories.podcast %}
<item>
<title>{{ post.title }}</title>
<itunes:author>{{ post.author }}</itunes:author>
<itunes:season>{{ post.season }}</itunes:season>
<itunes:episode>{{ post.episode }}</itunes:episode>
<itunes:episodeType>{{ post.episodeType }}</itunes:episodeType>
<itunes:explicit>{{ post.explicit }}</itunes:explicit>
<link>{{ post.url | absolute_url }}</link>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<itunes:duration>{{ post.length | xml_escape }}</itunes:duration>
<enclosure url='{{ post.audio | absolute_url }}' length='{{ post.length | xml_escape }}'/>
<description>{{ post.content | xml_escape | strip_newlines }}</description>
</item>
{% endfor %}
</channel>
</rss>