-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
29 lines (29 loc) · 1 KB
/
atom.xml
File metadata and controls
29 lines (29 loc) · 1 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
---
layout:
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>雷钦的博客</title>
<link href="http://blog.leiqin.name/atom.xml" rel="self"/>
<link href="http://blog.leiqin.name"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://blog.leiqin.name</id>
<author>
<name>雷钦</name>
<email>leiqin2010@gmail.com</email>
</author>
<rights>This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License - http://creativecommons.org/licenses/by-sa/3.0/</rights>
{% for post in site.posts limit:10 %}
<entry>
<title>{{ post.title }}</title>
<link href="http://blog.leiqin.name{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://blog.leiqin.name{{ post.id }}</id>
<content type="html">
<![CDATA[
{{ post.content }}
]]>
</content>
</entry>
{% endfor %}
</feed>