-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathfeed-all.rss
45 lines (39 loc) · 1.64 KB
/
feed-all.rss
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
---
permalink: /rss/index.xml
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<!-- This file is used for exporting entries to WordPress -->
<channel>
<title>{{ site.name }}</title>
<atom:link href="http://{{ site.url }}{{ page.url }}" rel="self" type="application/rss+xml" />
<link>http://{{ site.url }}/</link>
<description></description>
<lastBuildDate>{{ site.time | date: "%A, %d %b %Y %H:%M:%S +0000" }}</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>Jekyll RSS 2.0 (Tunghsiao Liu Remix Ver.)</generator>
{% for post in site.posts %}
<item>
<title>{{ post.title | xml_escape }}</title>
<link>http://{{ site.url }}{{ post.url }}/</link>
<comments>http://{{ site.url }}{{ post.url }}/#comments</comments>
<pubDate>{{ post.date | date: "%A, %d %b %Y 00:00:00 +0000" }}</pubDate>
<dc:creator>{{ site.user }}</dc:creator>
<guid isPermaLink="false">http://{{ site.url }}{{ post.url }}/</guid>
<description><![CDATA[{{ post.excerpt }}]]></description>
<content:encoded><![CDATA[{{ post.content }}]]></content:encoded>
<!-- <wfw:commentRss>http://sparanoid:8888/~/archives/1/feed/</wfw:commentRss> -->
<!-- <slash:comments>1</slash:comments> -->
</item>
{% endfor %}
</channel>
</rss>