summary refs log tree commit diff
path: root/rss.xml
blob: d29a94da7bfb8d0d875d88140572c807fd5abb23 (plain)
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
---
---

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xml" href="/feed.xslt.xml"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>{{ site.title | xml_escape }}</title>
		<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>		
		<link>{{ "/" | absolute_url }}</link>
		<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
        <language>{{ site.lang | default: "zh-CN" }}</language>
		<atom:link href="{{ "/rss.xml" | absolute_url }}" rel="self" type="application/rss+xml" />
		<atom:link href="{{ site.feed.path | absolute_url }}" rel="alternate" type="application/atom+xml" />
		{% for post in site.posts limit:10 %}
			<item>
				<title>{{ post.title | xml_escape }}</title>
				{% if post.excerpt %}
					<description>{{ post.excerpt | strip_html | xml_escape }}</description>
				{% else %}
					<description>{{ post.content | xml_escape }}</description>
				{% endif %}
				<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
				<link>{{ post.url | absolute_url }}</link>
                {% for tag in post.tags %}
                    <category>{{ tag | xml_escape }}</category>
                {% endfor %}
				<guid>{{ post.url | absolute_url }}</guid>
			</item>
		{% endfor %}
	</channel>
</rss>