27c7600eff
This allows for easy re-deployment in sub folders
27 lines
756 B
XML
27 lines
756 B
XML
---
|
|
layout: nil
|
|
---
|
|
<?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>
|
|
<content type="html">{{ post.content | xml_escape }}</content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|