-
Notifications
You must be signed in to change notification settings - Fork 227
/
podcast.xml
79 lines (68 loc) · 3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
layout: null
exclude_from_search: true
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>{{ site.podcast.title | xml_escape }}</title>
<atom:link href="{{ site.url }}/podcast.xml" rel="self" type="application/rss+xml" />
<itunes:new-feed-url>{{ site.url }}/podcast.xml</itunes:new-feed-url>
<link>{{ site.url }}</link>
<description>{{ site.podcast.description }}</description>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<language>{{ site.podcast.language }}</language>
<copyright>{{ site.podcast.copyright }}</copyright>
<itunes:subtitle>{{ site.podcast.description }}</itunes:subtitle>
<itunes:summary>{{ site.podcast.description }}</itunes:summary>
<itunes:keywords>{{ site.podcast.keywords | join:', ' }}</itunes:keywords>
<category>Technology</category>
<itunes:category text="Technology"/>
<itunes:author>{{ site.podcast.author }}</itunes:author>
<itunes:owner>
<itunes:name>{{ site.podcast.author }}</itunes:name>
<itunes:email>{{ site.podcast.email }}</itunes:email>
</itunes:owner>
<itunes:block>no</itunes:block>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="{{ site.podcast.logo_url }}" />
{% for episode in site.podcast.episodes %}
<item>
<title>{{ episode.title }}</title>
<pubDate>{{ episode.date | date_to_rfc822 }}</pubDate>
<description>{{ episode.description | xml_escape | replace:'&mdash;','-' }}</description>
<enclosure url="{{ episode.url }}" length="{{ episode.file_byte_length }}" type="audio/mpeg" />
<link>{{ episode.url }}</link>
<guid>{{ episode.url }}</guid>
<itunes:author>{{ episode.credits | xml_escape }}</itunes:author>
<itunes:summary>{{ episode.description | xml_escape | replace:'&mdash;','-' }}</itunes:summary>
<itunes:image href="{{ site.podcast.logo_url }}" />
<itunes:duration>{{ episode.duration }}</itunes:duration>
<itunes:keywords>{{ site.podcast.keywords | join:', ' }}</itunes:keywords>
{% if episode.links %}
<content:encoded><![CDATA[
<strong>Links:</strong>
<ul>
{% for link in episode.links %}
<li>
<a href="{{ link.url}}">{{link.title}}</a>
</li>
{% endfor %}
</ul>
]]>
</content:encoded>
{% endif %}
</item>
{% endfor %}
</channel>
</rss>