-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeed.xml
More file actions
83 lines (83 loc) · 3.61 KB
/
feed.xml
File metadata and controls
83 lines (83 loc) · 3.61 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
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
81
82
83
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss
version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
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: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:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0">
<channel>
<atom:link href="{{ site.production_url }}/feed.xml" rel="self" type="application/rss+xml" />
<title>{{ site.title }}</title>
<description>{{ site.description }}</description>
<link>{{ site.production_url }}</link>
<language>en-US</language>
<managingEditor>{{ site.author.email }} (Listen Ship Repeat)</managingEditor>
<webMaster>{{ site.author.email }} (Listen Ship Repeat)</webMaster>
<copyright>{{ site.copyright }}</copyright>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S GMT" }}</pubDate>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S GMT" }}</lastBuildDate>
<rawvoice:location>Thessaloniki, Greece</rawvoice:location>
<rawvoice:frequency>Weekly</rawvoice:frequency>
<sy:updatePeriod>daily</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<image>
<link>{{ site.production_url}}</link>
<url>{{ site.itunesImage }}</url>
<title>{{ site.title }}</title>
</image>
<itunes:explicit>No</itunes:explicit>
<itunes:subtitle>{{ site.podcastSubtitle }}</itunes:subtitle>
<itunes:author>{{ site.managerName }}</itunes:author>
<itunes:summary>{{ site.description }}</itunes:summary>
<itunes:keywords>Programming, Startups, entrepreneurs, developers, business, marketing</itunes:keywords>
<itunes:owner>
<itunes:name>{{ site.managerName}}</itunes:name>
<itunes:email>{{ site.author.email}}</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.itunesImage }}"/>
<itunes:category text="Technology">
<itunes:category text="Software How-To"/>
</itunes:category>
<itunes:category text="Business" />
{% for post in site.posts %}
<item>
<title><![CDATA[{{ post.title }}]]></title>
<link>{{ site.production_url }}{{ post.url }}</link>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S GMT" }}</pubDate>
<description>{{ post.description }}</description>
<guid isPermaLink="true">{{ site.production_url }}{{ post.url }}</guid>
<enclosure url="{{ post.episodeFile }}" length="{{ post.podcastSizeBytes }}" type="audio/mpeg"/>
<itunes:author>{{ site.managerName }}</itunes:author>
<dc:creator>{{ site.managerName }}</dc:creator>
<content:encoded>
<![CDATA[
{{ post.description }}
]]>
</content:encoded>
<itunes:subtitle>
{{ post.description }}
</itunes:subtitle>
<itunes:summary>
{{ post.description }}
</itunes:summary>
<itunes:duration>{{ post.podcastLength }}</itunes:duration>
{% for tag in post.tags %}
<category><![CDATA[{{ tag }}]]></category>
{% endfor %}
<itunes:keywords>
{% for tag in post.tags %}{{ tag }},{% endfor %}
</itunes:keywords>
<itunes:image href="{% if post.image %}{{ site.production_url }}{{ post.image }}{% else %}{{ site.production_url }}{{site.squareLogo}}{% endif %}"/>
<itunes:explicit>no</itunes:explicit>
</item>
{% endfor %}
</channel>
</rss>