forked from jhannah/jayflaunts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
podcast.xml
49 lines (44 loc) · 2.68 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
---
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>Jay Flaunts His Ignorance. The podcast.</title>
<link>http://jhannah.github.io/jayflaunts/</link>
<language>en</language>
<copyright>© 2015-2016 Jay Hannah</copyright>
<!-- <itunes:subtitle>Jay Hannah running around talking to interesting people about whatever they're excited about.</itunes:subtitle> -->
<itunes:author>Jay Hannah</itunes:author>
<itunes:keywords>talk,interview</itunes:keywords>
<itunes:summary>Hi. My name is Jay Hannah. I’m a computer nerd with too many hobbies currently living in Omaha, Nebraska, USA. I’ve been listening to podcasts since before iTunes knew what they were. Big fan.
I’ve had lots of interesting conversations with people about their jobs, projects, hobbies, politics, religion, and other topics that may or may not be safe for polite company.
In January 2015 I bought a cool microphone. Let’s see if anybody will go “on the record” with me. And if anyone wants to listen. :)</itunes:summary>
<description>Hi. My name is Jay Hannah. I’m a computer nerd with too many hobbies currently living in Omaha, Nebraska, USA. I’ve been listening to podcasts since before iTunes knew what they were. Big fan.
I’ve had lots of interesting conversations with people about their jobs, projects, hobbies, politics, religion, and other topics that may or may not be safe for polite company.
In January 2015 I bought a cool microphone. Let’s see if anybody will go “on the record” with me. And if anyone wants to listen. :)</description>
<itunes:owner>
<itunes:name>Jay Hannah</itunes:name>
<itunes:email>jay+flaunts@jays.net</itunes:email>
</itunes:owner>
<itunes:image href="{{site.storage_url}}/logo.jpg" />
<itunes:category text="Society & Culture" />
<itunes:explicit>yes</itunes:explicit>
<itunes:new-feed-url>http://jhannah.github.io/jayflaunts/podcast.xml</itunes:new-feed-url>
{% for post in site.posts %}
<item>
<title>{{ post.title }}</title>
<itunes:author>Jay Hannah</itunes:author>
<itunes:subtitle>{{ post.title }}</itunes:subtitle>
<itunes:summary>{{ post.content | xml_escape }}</itunes:summary>
<itunes:image href="{{site.storage_url}}/logo.jpg" />
<enclosure url="{{ post.link }}" length="{{ post.length }}" type="audio/x-m4a" />
<guid>{{ post.link }}</guid>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S" }} GMT</pubDate>
<itunes:duration>{{ post.duration }}</itunes:duration>
<itunes:keywords>talk,interview</itunes:keywords>
<itunes:explicit>yes</itunes:explicit>
</item>
{% endfor %}
</channel>
</rss>