-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeed.xml
More file actions
39 lines (39 loc) · 2.03 KB
/
feed.xml
File metadata and controls
39 lines (39 loc) · 2.03 KB
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
---
layout: null
---
<?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" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>{{ site.title | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
<link>{{ site.url }}{{ site.baseurl }}/</link>
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<media:keywords>kumocast, Web,若者,プログラミング,Podcast</media:keywords>
<media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology/Tech News</media:category>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="https://raw.githubusercontent.com/MokumokuCloud/podcasting/master/images/coverart.png" />
<itunes:keywords>Web,若者,プログラミング,Podcast</itunes:keywords>
<itunes:subtitle>{{ site.description | xml_escape }}</itunes:subtitle>
<itunes:summary>{{ site.description | xml_escape }}</itunes:summary>
<itunes:category text="Technology">
<itunes:category text="Tech News" />
</itunes:category>
<itunes:author>gaaamii & karur4n</itunes:author>
<language>ja</language>
{% for post in site.posts %}
<item>
<title>{{ post.number }}. {{ post.title | xml_escape }}</title>
<description>
{{ post.description | xml_escape }}
{{ post.content | xml_escape }}
</description>
<itunes:subtitle>{{ post.description | xml_escape }}</itunes:subtitle>
<enclosure url="{{ site.url }}{{ post.audio }}" length="0" type="audio/mpeg"/>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
</item>
{% endfor %}
</channel>
</rss>