-
Notifications
You must be signed in to change notification settings - Fork 8
/
feed.xml
executable file
·67 lines (67 loc) · 3.24 KB
/
feed.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
---
---
<?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/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>{{ site.title }}</title>
<description>{{ site.description }}</description>
<generator>Jekyll</generator>
<link>{{ site.url }}</link>
<atom:link href="{{ site.feed }}" rel="self" type="application/rss+xml" />
<media:thumbnail url="{{ site.url }}/images/icon240.png" />
<media:keywords>{{ site.keywords }}</media:keywords>
<media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Technology</media:category>
<itunes:author>{{ site.author }}</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="{{ site.url }}/images/icon1400.jpg" />
<itunes:keywords>{{ site.keywords }}</itunes:keywords>
<itunes:subtitle>{{ site.tagline }}</itunes:subtitle>
<itunes:summary>{{ site.description }}</itunes:summary>
<itunes:category text="Technology">
<itunes:category text="Gadgets" />
</itunes:category>
<itunes:category text="News & Politics">
</itunes:category>
<itunes:category text="Arts">
</itunes:category>
<itunes:category text="Games & Hobbies">
</itunes:category>
<itunes:owner>
<itunes:name>{{ site.author }}</itunes:name>
<itunes:email>{{ site.owner.email }}</itunes:email>
</itunes:owner>
<language>ja</language>
{% for post in site.posts %}
<item>
<title>{{ post.title }}</title>
<description>
<p>このページをウェブブラウザで見る: <a href="{{ site.url }}{{ post.url }}">リンク</a><br><hr></p>
{{ post.content | replace: '</audio>', 'audio 要素はサポートされていません</audio>' | xml_escape }}
</description>
<itunes:summary>
<p>このページをウェブブラウザで見る: <a href="{{ site.url }}{{ post.url }}">リンク</a><br><hr></p>
{{ post.content | replace: '</audio>', 'audio 要素はサポートされていません</audio>' | xml_escape }}
</itunes:summary>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
{% if post.redirect %}
<link>{{ post.redirect }}</link>
<guid isPermaLink="true">{{ post.redirect }}</guid>
{% else %}
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
{% endif %}
<dc:creator>{{ site.author }}</dc:creator>
{% if post.audio %}
<itunes:explicit>no</itunes:explicit>
<itunes:subtitle>{{ post.excerpt | strip_html | truncate: 255 }}</itunes:subtitle>
<itunes:duration>{{ post.runtime }}</itunes:duration>
{% if post.audio_aac %}
<enclosure url="{{ post.audio_aac }}" type="audio/mpeg" length="{{ post.size_aac }}" />
{% else %}
<enclosure url="{{ post.audio }}" type="audio/mpeg" length="{{ post.size }}" />
{% endif %}
{% endif %}
</item>
{% endfor %}
</channel>
</rss>