forked from lifestonechurch/lifestonechurch.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.rss
53 lines (51 loc) · 2.25 KB
/
feed.rss
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
47
48
49
50
51
52
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>{{ site.title }}</title>
<description>{{ site.description }}</description>
<link>{{ site.url }}</link>
<language>en</language>
<managingEditor>{{ site.managerName }} ({{ site.managerEmail }})</managingEditor>
<webMaster>{{ site.managerName }} ({{ site.managerEmail }})</webMaster>
<copyright>2014-{{site.time | "%Y" }} {{ site.organizationName }}</copyright>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S GMT" }}</pubDate>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y" }}</lastBuildDate>
<image>
<link>{{ site.url}}</link>
<url>{{ site.url }}/{{ site.squareLogo}}</url>
<title>{{ site.title }}</title>
</image>
<itunes:subtitle>{{ site.podcastSubtitle }}</itunes:subtitle>
<itunes:author>{{ site.organizationName }}</itunes:author>
<itunes:summary></itunes:summary>
<itunes:keywords></itunes:keywords>
<itunes:owner>
<itunes:name>{{ site.managerName}}</itunes:name>
<itunes:email>{{ site.managerEmail}}</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.url }}/{{ site.squareLogo}}" />
<itunes:category text="Religion & Spirituality">
<itunes:category text="Christianity" />
</itunes:category>
{% assign sermons = (site.sermons | sort: 'date') | reverse %}
{% for post in sermons %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{ site.url }}{{ post.url | replace:'&','%26'}}</link>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S GMT" }}</pubDate>
<description>{{ post.description }}</description>
<guid isPermaLink="true">http://www.podtrac.com/pts/redirect.mp3/{{ post.link }}</guid>
<enclosure url="http://www.podtrac.com/pts/redirect.mp3/{{ post.link }}" length="{{ post.length }}" type="audio/mp3"/>
<itunes:author>{{ post.speaker }}</itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary>{{ post.description }}</itunes:summary>
<itunes:duration>{{ post.podcastLength }}</itunes:duration>
<itunes:keywords>{{ post.keywords }}</itunes:keywords>
<itunes:image href="{{ site.url }}/{{site.squareLogo}}" />
<itunes:explicit>no</itunes:explicit>
</item>
{% endfor %}
</channel>
</rss>