Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add atom feed
  • Loading branch information
bclozel committed Aug 26, 2011
commit c8ff64b2b341af7e0b632fcd445041dd2b9de1f2
27 changes: 27 additions & 0 deletions atom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>PullRequest</title>
<link href="http://pullrequest.org/atom.xml" rel="self"/>
<link href="http://pullrequest.org/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://pullrequest.org/</id>
<author>
<name>Equipe PullRequest</name>
<email>[email protected]</email>
</author>

{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://pullrequest.org{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://pullrequest.org{{ post.id }}</id>
<content type="html">{{ post.content | strip_html | truncatewords:50 }}</content>
</entry>
{% endfor %}

</feed>