-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpodcast.xml
More file actions
46 lines (42 loc) · 1.82 KB
/
podcast.xml
File metadata and controls
46 lines (42 loc) · 1.82 KB
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
44
45
46
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>Valley Church</title>
<link>http://www.govalley.org/</link>
<language>en</language>
<copyright>© 2014 Valley Church</copyright>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<itunes:subtitle>Sermons from Valley Church</itunes:subtitle>
<itunes:author>Michael Stufflebeam</itunes:author>
<itunes:keywords>may,valley,church,michael,stufflebeam,christian,missionary,alliance</itunes:keywords>
<itunes:summary>Sermons from Valley Church.</itunes:summary>
<description>Sermons from Valley Church.</description>
<itunes:owner>
<itunes:name>Valley Church</itunes:name>
<itunes:email>welcome@govalley.org</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.url }}/images/logo.png" />
<itunes:category text="Religion & Spirituality" />
<itunes:category text="Christianity" />
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title }}</title>
{% if post.category %}
<itunes:subtitle>{{ post.category }}: {{ post.title }}</itunes:subtitle>
{% endif %}
<itunes:author>{{ post.speaker }}</itunes:author>
<itunes:summary>
{% if post.category %}Part {{ post.part }} of the {{ post.category }} series. {% endif %}
By {{ post.speaker }}
</itunes:summary>
<itunes:image href="{{ site.url }}/images/logo.png" />
<enclosure url="{{ site.cdn }}/sermons/{{ post.mp3 }}" length="{{ post.size }}" type="audio/mpeg" />
<guid>{{ post.mp3 }}</guid>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<itunes:duration>{{ post.duration }}</itunes:duration>
</item>
{% endfor %}
</channel>
</rss>