-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfeed.xml
More file actions
52 lines (49 loc) · 2.35 KB
/
feed.xml
File metadata and controls
52 lines (49 loc) · 2.35 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
47
48
49
50
51
52
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
<itunes:summary>{{ site.description | xml_escape }}</itunes:summary>
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
<language>en</language>
<link>{{ site.url }}{{ site.baseurl }}/</link>
<managingEditor>Jamison Dance and Dave Smith</managingEditor>
<webMaster>Jamison Dance and Dave Smith</webMaster>
<copyright>2016 Jamison Dance and Dave Smith</copyright>
<lastBuildDate>{{ site.posts.first.date }}</lastBuildDate>
<itunes:explicit>no</itunes:explicit>
<image>
<link>{{ site.url }}{{ site.baseurl }}</link>
<url>{{ site.podcast_cover_art_url }}</url>
<title>{{ site.title | xml_escape }}</title>
</image>
<itunes:new-feed-url>{{ site.podcast_feed_url }}</itunes:new-feed-url>
<itunes:subtitle>{{ site.description | xml_escape }}</itunes:subtitle>
<itunes:author>Jamison Dance and Dave Smith</itunes:author>
<itunes:keywords></itunes:keywords>
<itunes:owner>
<itunes:name>Jamison Dance and Dave Smith</itunes:name>
<itunes:email>soft-skills-engineering@googlegroups.com</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.podcast_cover_art_url }}"></itunes:image>
<itunes:category text="Technology" />
{% for post in site.posts %}
<item>
<title>{{ post.title | xml_escape }}</title>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<source url="{{ site.url }}{{ site.baseurl }}">{{ site.title }}</source>
<guid isPermaLink="false">{{ post.guid }}</guid>
<itunes:author></itunes:author>
<itunes:duration>{{ post.duration }}</itunes:duration>
<enclosure url="{{ post.file }}?source=rss" length="{{ post.length }}" type="audio/mpeg"/>
<itunes:explicit>no</itunes:explicit>
<itunes:subtitle></itunes:subtitle>
<description>{{ post.content | xml_escape }}</description>
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
</item>
{% endfor %}
</channel>
</rss>