-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpodcast.xml
43 lines (42 loc) · 1.99 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
---
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><![CDATA[{{ site.name }}]]></title>
<link>{{ site.url }}</link>
<language>ko</language>
<copyright><![CDATA[{{ site.name }}]]></copyright>
<itunes:subtitle><![CDATA[{{ site.podcast.subtitle }}]]></itunes:subtitle>
<itunes:author><![CDATA[{{ site.podcast.author }}]]></itunes:author>
<itunes:keywords><![CDATA[{{ site.podcast.keyword }}]]></itunes:keywords>
<itunes:summary><![CDATA[{{ site.podcast.description }}]]></itunes:summary>
<description><![CDATA[{{ site.podcast.description }}]]></description>
<itunes:owner>
<itunes:name>{{ site.podcast.owner_name }}</itunes:name>
<itunes:email>{{ site.podcast.owner_email }}</itunes:email>
</itunes:owner>
<itunes:image href="{{ site.podcast.image }}" />
<itunes:category text="Technology">
<itunes:category text="Software How-To" />
</itunes:category>
<itunes:explicit>clean</itunes:explicit>
{% for post in site.posts %}
<item>
<title><![CDATA[{{ post.title }}]]></title>
<itunes:author><![CDATA[{{ post.author }}]]></itunes:author>
<itunes:subtitle><![CDATA[{{ post.title }}]]></itunes:subtitle>
<itunes:summary><![CDATA[{{ post.content }} {% include naver_d2.html %}]]></itunes:summary>
<description><![CDATA[{{ post.content }} {% include naver_d2.html %}]]></description>
<itunes:image href="{{ site.podcast.image }}" />
<enclosure url="{{ post.enclosure_url }}" length="{{ post.enclosure_bytes_size }}" type="{{ post.type }}" />
<guid isPermaLink="false">{{ post.id }}</guid>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S" }} GMT</pubDate>
<itunes:order>{{ forloop.index }}</itunes:order>
<itunes:duration>{{ post.duration }}</itunes:duration>
<itunes:keywords><![CDATA[{{ site.podcast.keyword }}]]></itunes:keywords>
</item>
{% endfor %}
</channel>
</rss>