-
Notifications
You must be signed in to change notification settings - Fork 8
/
feed.xml
68 lines (58 loc) · 3.15 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
---
layout: null
date: 2013-09-21 13:00:00
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ site.name }}</title>
<link>https:{{ site.url }}</link>
<description>{{ site.description }}</description>
<language>en-us</language>
<itunes:explicit>no</itunes:explicit>
<itunes:summary>{{ site.description }}</itunes:summary>
<itunes:subtitle>{{ site.description | truncate: 255 }}</itunes:subtitle>
<itunes:author>{{ site.author }}</itunes:author>
<itunes:owner>
<itunes:email>{{ site.email }}</itunes:email>
<itunes:name>{{ site.author }}</itunes:name>
</itunes:owner>
<itunes:keywords>{{ site.tags }}</itunes:keywords>
<itunes:category text="Technology">
<itunes:category text="Podcasting" />
</itunes:category>
<itunes:image href="http://webuildsg.github.io/assets/logo-1400.jpg" />
<image>
<title>{{ site.name }}</title>
<link>https:{{ site.url }}</link>
<url>http://webuildsg.github.io/assets/logo-1400.jpg</url>
</image>
<atom:link rel="self" type="application/rss+xml" title="{{ site.name }}" href="{{ site.url }}/feed.xml" />
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="{{ site.feed }}" />
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
<creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license>
{% for post in site.posts %}
<item>
<title>{% if post.topic %}{{ post.number}} {{ post.topic }} with {{ post.guest }}{% else %}{{ post.title }} on {{ post.description }}{% endif %}</title>
<link>https:{{ site.url }}{{ post.permalink }}</link>
<description>{% if post.topic %} <![CDATA[{{ post.content }}]]> {% else %} {{ post.description }}{% endif %}</description>
<content:encoded><![CDATA[{{ post.content }}]]></content:encoded>
<guid isPermaLink="false">{{ post.enclosure }}.mp3</guid>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<author>{{ site.email }}</author>
<itunes:title>{% if post.topic %}{{ post.number}} {{ post.topic }} with {{ post.guest }}{% else %}{{ post.title }} on {{ post.description }}{% endif %}</itunes:title>
<itunes:author>{{ site.author }}</itunes:author>
<itunes:subtitle>{% if post.topic %} {{ post.topic }} with {{ post.guest }} {% else %} {{ post.description}} {% endif %}</itunes:subtitle>
<itunes:summary>{{ post.content | strip_html | truncate: 4000}} </itunes:summary>
<itunes:explicit>no</itunes:explicit>
<itunes:keywords>{{ post.tags }}</itunes:keywords>
<itunes:image href="http://webuildsg.github.io/assets/logo-100.jpg" />
<enclosure url="{{site.audiourl}}/{{ post.enclosure }}.mp3" length="{{ post.length }}" type="audio/mp3" />
</item>
{% endfor %}
</channel>
</rss>