1
Fork 0
blog/feed.xml

27 lines
757 B
XML
Raw Normal View History

2011-08-25 10:20:25 +00:00
---
2014-10-20 21:21:47 +00:00
layout: null
2011-08-25 10:20:25 +00:00
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>fnordig.de</title>
<link href="http://fnordig.de/feed.xml" rel="self"/>
<link href="http://fnordig.de/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>http://fnordig.de/</id>
<author>
<name>Jan-Erik Rediger</name>
<email>janerik@fnordig.de</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="http://fnordig.de{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>http://fnordig.de{{site.baseurl}}{{ post.url | replace_first: '/'}}</id>
2011-08-25 10:20:25 +00:00
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>