-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpodcast.xml
81 lines (42 loc) · 2.13 KB
/
podcast.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
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>Frontflip</title>
<link>http://frontflip.me/</link>
<language>ru</language>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
<copyright>© 2014 Илья Заяц & Артем Сущев</copyright>
<itunes:subtitle>Подкаст о JavaScript'e, фронтенде и сопутствующих технологиях</itunes:subtitle>
<itunes:author>Илья Заяц & Артем Сущев</itunes:author>
<itunes:keywords>ru, js, javascript, programming, development, web, html, css, frontend, it</itunes:keywords>
<itunes:summary>Подкаст о JavaScript'e, фронтенде и сопутствующих технологиях</itunes:summary>
<description>Подкаст о JavaScript'e, фронтенде и сопутствующих технологиях</description>
<itunes:image href="http://please.frontflip.me/logo.jpg"/>
<itunes:explicit>no</itunes:explicit>
<itunes:owner>
<itunes:name>Илья Заяц</itunes:name>
</itunes:owner>
<itunes:category text="Technology" />
{% for post in site.posts %}
<item>
<title>{{ post.title }}</title>
<link>http://frontflip.me{{post.url}}</link>
<description><![CDATA[{{ post.content }}]]></description>
<itunes:author>Илья Заяц & Артем Сущев</itunes:author>
<itunes:subtitle>Frontflip: {{ post.title }}</itunes:subtitle>
<itunes:summary>{{ post.content | strip_html }}</itunes:summary>
<itunes:image href="http://please.frontflip.me/logo.jpg"/>
<enclosure url="http:{{ post.episode_url }}.mp3" length="{{ post.length }}" type="audio/mpeg" />
<guid>http:{{ post.episode_url }}.mp3</guid>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<itunes:duration>{{ post.duration }}</itunes:duration>
<itunes:explicit>no</itunes:explicit>
<itunes:keywords>ru, js, javascript, programming, development, web, html, css, frontend, it</itunes:keywords>
</item>
{% endfor %}
</channel>
</rss>