-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathatom.xml
27 lines (27 loc) · 849 Bytes
/
atom.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
---
layout: nil
author: SeanLou
email: [email protected]
domain: lxj.name
---
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{page.author}}的博客</title>
<link href="http://{{page.domain}}/atom.xml" rel="self"/>
<link href="http://{{page.domain}}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://{{page.domain}}/</id>
<author>
<name>{{page.author}}</name>
<email>{{page.email}}</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://{{ page.domain }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://{{ page.domain }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>