-
Notifications
You must be signed in to change notification settings - Fork 14
/
feed.xml
30 lines (30 loc) · 1.09 KB
/
feed.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
---
layout: none
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[{{ site.name }}]]></title>
<link href="{{ site.url }}/feed.xml" rel="self" />
<link href="{{ site.url }}/" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
{% for post in site.posts limit:10 %}
<entry>
<title type="html"><![CDATA[{{ post.title }}]]></title>
<link href="{{ site.url }}{{ post.url }}"/>
{% if post.author && post.author in site.data.members %}
{% assign author = site.data.members[post.author] %}
<author>
<name>{{ author.name }}</name>
<uri>{{ author.url }}</uri>
</author>
{% endif %}
<updated>{{ post.date | date_to_xmlschema }}</updated>
<published>{{ post.date | date_to_xmlschema }}</published>
<id>{{ site.url }}{{ post.url }}</id>
<content type="html" xml:base="{{ site.url }}/" xml:lang="en">
<![CDATA[ {{ post.content }} ]]>
</content>
</entry>
{% endfor %}
</feed>