forked from kitian616/jekyll-TeXt-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
podcast.rss
56 lines (55 loc) · 2.35 KB
/
podcast.rss
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
---
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xml:lang="{{ site.lang }}">
<channel>
<atom:link href="{{ site.url }}/podcast.rss" rel="self" type="application/rss+xml" />
<title>{{ site.title }}</title>
<description>{{ site.description | xml_escape }}</description>
<link>{{ site.url }}</link>
<language>{{ site.lang }}</language>
<webMaster>[email protected] (James York)</webMaster>
<managingEditor>[email protected] (James York)</managingEditor>
<copyright>2019-{{ site.time | date_to_long_string }} {{ site.title }}</copyright>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<image>
<link>{{ site.url }}</link>
<url>{{ site.url }}/assets/images/llp-twitter.jpg</url>
<title>{{ site.title }}</title>
</image>
<itunes:subtitle>{{ site.description | xml_escape }}</itunes:subtitle>
<itunes:author>James York</itunes:author>
<itunes:summary>{{ site.description | xml_escape }}</itunes:summary>
<itunes:keywords>{{ site.keywords }}</itunes:keywords>
<itunes:explicit>no</itunes:explicit>
<itunes:owner>
<itunes:name>James York</itunes:name>
<itunes:email>[email protected]</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.url }}/assets/images/llp-twitter.jpg" />
<itunes:category text="Education">
<itunes:category text="Language Learning" />
</itunes:category>
{% for post in site.posts %}
{% if post.tags contains 'podcast' %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<description>{{ post.excerpt | xml_escape }}</description>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<enclosure url="{{ site.url }}{{ post.file }}" length="{{ post.length }}" type="audio/mp3"/>
<itunes:author>"Ludic Language Pedagogy</itunes:author>
<itunes:subtitle>{{ site.title }}: {{ post.title }}</itunes:subtitle>
<itunes:summary>{{ post.summary | xml_escape }}</itunes:summary>
<itunes:duration>{{ post.duration }}</itunes:duration>
<itunes:keywords>{{ post.keywords }}</itunes:keywords>
<itunes:image href="{{ site.url }}/assets/images/llp-twitter.jpg" />
<itunes:explicit>no</itunes:explicit>
<itunes:block>{{ post.block }}</itunes:block>
</item>
{% endif %}
{% endfor %}
</channel>
</rss>