Skip to content

Commit

Permalink
Merge pull request #35 from goozbach/master
Browse files Browse the repository at this point in the history
Added an Atom.xml file
  • Loading branch information
shalkie committed Feb 27, 2012
2 parents d7aa69b + e8a9471 commit a6940c0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions atom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: nil
---
<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">

<title>GoOSeProject.org</title>
<link href="http://gooseproject.org/"/>
<link type="application/atom+xml" rel="self" href="http://gooseproject.org/atom.xml"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://gooseproject.org/</id>
<author>
<name>GoOSeProject</name>
<email>[email protected]</email>
</author>

{% for post in site.posts %}
<entry>
<id>http://gooseproject.org{{ post.id }}</id>
<link type="text/html" rel="alternate" href="http://gooseproject.org{{ post.url }}"/>
<title>{{ post.title }}</title>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<author>
<name>GoOSeProject</name>
<uri>http://gooseproject.org/</uri>
</author>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}

</feed>

0 comments on commit a6940c0

Please sign in to comment.