-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio.xml
63 lines (40 loc) · 1.81 KB
/
audio.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
---
layout: nil
---
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>Fripfrap</title>
<link>http://fripfrap.io</link>
<language>en-us</language>
<copyright>℗ & © {{ site.time | date: "%Y" }} Divya Manian & Garann Means</copyright>
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<itunes:subtitle>Front-end Banter in 30 mins or less</itunes:subtitle>
<itunes:author>Divya Manian & Garann Means</itunes:author>
<itunes:summary>Divya Manian & Garann Means talk about what is new in the world of front-end web development, standards, and technology.</itunes:summary>
<description>Each week we discuss what are some of the tools, technologies & standards work that is catching our attention.</description>
<itunes:owner>
<itunes:name>Divya Manian</itunes:name>
<itunes:email>apple@nimbu.in</itunes:email>
</itunes:owner>
<itunes:image href="{{site.aws}}/assets/podcast.png" />
<itunes:category text="Technology">
<itunes:category text="Tech News"/>
<itunes:category text="Software How-To"/>
</itunes:category>
{% for post in site.posts %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{site.url}}{{ post.url }}</link>
<itunes:author>Divya Manian & Garann Means</itunes:author>
<itunes:subtitle></itunes:subtitle>
<itunes:summary>{{ post.content | xml_escape }}</itunes:summary>
<enclosure url="{{site.aws}}/Fripfrap-{{ post.title | split: " " | join: "-"}}.mp3" length="{{ post.size }}" type="audio/mpeg" />
<description>{{ post.content | xml_escape }}</description>
<guid>{{ site.url }}{{ post.url }}</guid>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<itunes:duration>{{ post.duration }}</itunes:duration>
</item>
{% endfor %}
</channel>
</rss>