-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
22 lines (22 loc) · 721 Bytes
/
Copy pathfeed.xml
File metadata and controls
22 lines (22 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Eltados' blog</title>
<link type="text/html" rel="alternate" href="http://eltados.github.com"/>
<author>
<name>Eltados</name>
</author>
{% for post in site.posts limit:20 %}
<entry>
<title>{{ post.title }}</title>
<link rel="alternate" type="text/html" href="{{post.url}}" />
<id>{{post.id}}</id>
<published>{{post.date}}</published>
<author>
<name>Eltados</name>
<uri>http://eltados.github.com/</uri>
</author>
<content type="html" xml:lang="en" xml:base="http://eltados.github.com/">
<![CDATA[{{post.content}}]]>
</content>
</entry>
{% endfor %}
</feed>