Skip to content

Commit bca68f3

Browse files
committed
Added atom feed
1 parent cc2b535 commit bca68f3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

atom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: nil
3+
---
4+
<?xml version="1.0"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>PythonPune</title>
8+
<link>http://pythonpune.github.com/</link>
9+
<atom:link href="http://pythonpune.github.com/atom.xml" rel="self" type="application/rss+xml" />
10+
<description>PythonPune</description>
11+
<language>en-us</language>
12+
<pubDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
13+
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %z" }}</lastBuildDate>
14+
15+
{% for post in site.posts %}
16+
<item>
17+
<title>{{ post.title }}</title>
18+
<link>http://functionn.github.com{{ post.url }}</link>
19+
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
20+
<author>functionn.github@functionn.github.com (Functionn)</author>
21+
<guid>http://functionn.github.com{{ post.id }}</guid>
22+
<description>{{ post.content | xml_escape }}</description>
23+
</item>
24+
{% endfor %}
25+
26+
</channel>
27+
</rss>

0 commit comments

Comments
 (0)