-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathrss.xml
31 lines (31 loc) · 1.41 KB
/
rss.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
---
---
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>vim-jp</title>
<link>{{ site.base-url | xml_escape }}</link>
<atom:link rel="self" type="application/rss+xml" href="{{ site.base-url | xml_escape }}{{ page.url | xml_escape}}" />
<link rel="shortcut icon" herf="{{ site.base-url }}/favicon.ico" />
<description>{{ 'vim-jp » Vimのユーザーと開発者を結ぶコミュニティサイト' | xml_escape }}</description>
<pubDate>{{ site.time | date: '%a, %d %b %Y %H:%M:%S +0900' }}</pubDate>
<lastBuildDate>{{ site.time | date: '%a, %d %b %Y %H:%M:%S +0900' }}</lastBuildDate>
<image>
<url>{{ site.base-url | xml_escape }}/assets/images/vim2-32.png</url>
<title>vim-jp</title>
<link>{{ site.base-url | xml_escape }}</link>
<width>32</width>
<height>32</height>
</image>
{% for post in site.posts limit: 25 %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>{{ site.base-url | xml_escape }}{{ post.url | xml_escape }}</link>
<guid isPermaLink="false">tag:vim-jp.org,{{ post.date | date: '%Y/%m/%d' }}:{{ post.url | xml_escape }},rev:1</guid>
<pubDate>{{ post.date | date: '%a, %d %b %Y %H:%M:%S +0900' }}</pubDate>
<author>vim-jp</author>
<description>{{ post.content | xml_escape }}</description>
</item>
{% endfor %}
</channel>
</rss>