forked from soft-skills-engineering/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed-test.xml
61 lines (56 loc) · 2.68 KB
/
feed-test.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
---
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>TEST {{ site.title | xml_escape }}</title>
<description>TEST {{ site.description | xml_escape }}</description>
<itunes:summary>TEST {{ 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>https://download.softskills.audio/sse-logo-3.png</url>
<title>{{ site.title | xml_escape }}</title>
</image>
<itunes:subtitle>{{ site.description }}</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>[email protected]</itunes:email>
</itunes:owner>
<itunes:image href="https://download.softskills.audio/sse-logo-3.png"></itunes:image>
<itunes:category text="Education">
<itunes:category text="Training"/>
</itunes:category>
<itunes:category text="Technology">
<itunes:category text="Software How-To"/>
</itunes:category>
{% 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 }}?rss=true" length="{{ post.length }}" type="audio/mpeg"/>
<itunes:explicit>no</itunes:explicit>
<itunes:subtitle></itunes:subtitle>
<description>{{ post.content | xml_escape }}</description>
<description><![CDATA[{{ post.content | markdownify | strip_html | cdata_escape }}]]></description>
<itunes:summary>{{ post.content | xml_escape }}</itunes:summary>
<!-- FIXME? -->
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
</item>
{% endfor %}
</channel>
</rss>