forked from FLOSSforScience/FLOSSforScience.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
80 lines (78 loc) · 3.46 KB
/
feed.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
80
---
layout: null
---
<?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"
>
<channel>
<title>{{ site.podcast_title }}</title>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
<link>{{ site.url }}</link>
<description>{{ site.podcast_description }}</description>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://jekyllrb.com</generator>
<itunes:summary>{{ site.podcast_summary }}</itunes:summary>
<itunes:author>{{ site.podcast_author }}</itunes:author>
<itunes:explicit>{{ site.podcast_explicit }}</itunes:explicit>
<itunes:type>{{ site.podcast_type }}</itunes:type>
<!-- <itunes:image href="{{ site.url }}{{ site.podcast_album_art }}" /> -->
<itunes:image href="{{ site.podcast_album_art }}" />
<itunes:owner>
<itunes:name>{{ site.podcast_owner }}</itunes:name>
<itunes:email>{{ site.podcast_email }}</itunes:email>
</itunes:owner>
<managingEditor>{{ site.podcast_email }} ({{ site.podcast_owner }})</managingEditor>
<itunes:subtitle>{{ site.podcast_subtitle }}</itunes:subtitle>
<image>
<title>{{ site.podcast_title }}</title>
<url>{{ site.url }}{{ site.podcast_album_art }}</url>
<link>{{ site.url }}</link>
</image>
<itunes:category text="{{ site.podcast_category }}">
<itunes:category text="{{ site.podcast_subcategory_one }}" />
<itunes:category text="{{ site.podcast_subcategory_two }}" />
</itunes:category>
{% for ep in site.categories.podcast %}
<item>
<title>{{ ep.title }}</title>
<link>{{ site.url }}{{ ep.url }}</link>
<comments>{{ site.url }}{{ ep.url }}#comments</comments>
<pubDate>{{ ep.date | date: "%a, %d %b %Y %T %z" }}</pubDate>
<dc:creator><![CDATA[{{ site.podcast_author | cdata_escape }}]]></dc:creator>
{% for category in ep.categories %}
<category><![CDATA[{{ category | cdata_escape }}]]></category>
{% endfor %}
{% for category in ep.tags %}
<category><![CDATA[{{ category | cdata_escape }}]]></category>
{% endfor %}
<guid isPermaLink="{% if ep.podcast_guid %}false{% else %}true{% endif %}">{{ site.url }}{% if ep.podcast_guid %}/{{ ep.podcast_guid }}{% else %}{{ ep.url }}{% endif %}</guid>
<description>
{{ ep.podcast_description }}
</description>
<content:encoded>
{{ ep.podcast_description }}
</content:encoded>
<enclosure url="{{ ep.podcast_link }}" length="{{ ep.podcast_length }}" type="audio/mpeg" />
<itunes:season>{{ ep.podcast_season_number }}</itunes:season>
<itunes:episode>{{ ep.podcast_episode_number }}</itunes:episode>
<itunes:title>{{ ep.title }}</itunes:title>
<itunes:subtitle>{{ ep.podcast_subtitle }}</itunes:subtitle>
<itunes:summary>{{ ep.podcast_description }}</itunes:summary>
<itunes:author>{{ site.podcast_author }}</itunes:author>
<itunes:image href="{{ site.podcast_album_art }}" />
<itunes:explicit>{{ site.podcast_explicit }}</itunes:explicit>
<itunes:duration>{{ ep.podcast_duration }}</itunes:duration>
<itunes:episodeType>{{ ep.podcast_episode_type }}</itunes:episodeType>
</item>
{% endfor %}
</channel>
</rss>