2013-05-24 16:25:31 +02:00
|
|
|
---
|
2014-07-31 15:40:48 +02:00
|
|
|
sitemap: false
|
2013-05-24 16:25:31 +02:00
|
|
|
---
|
2014-09-05 02:57:00 +02:00
|
|
|
|
2013-05-24 16:25:31 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
|
|
|
|
<title type="text">{{ site.title }}</title>
|
2014-01-17 10:44:28 +01:00
|
|
|
<generator uri="https://github.com/jekyll/jekyll">Jekyll</generator>
|
2013-05-24 16:25:31 +02:00
|
|
|
<link rel="self" type="application/atom+xml" href="{{ site.url }}/feed.xml" />
|
|
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}" />
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}/</id>
|
|
|
|
<author>
|
|
|
|
<name>{{ site.owner.name }}</name>
|
|
|
|
<uri>{{ site.url }}/</uri>
|
2014-07-31 21:21:11 +02:00
|
|
|
{% if site.owner.email %}<email>{{ site.owner.email }}</email>{% endif %}
|
2013-05-24 16:25:31 +02:00
|
|
|
</author>
|
|
|
|
{% for post in site.posts limit:20 %}
|
2014-08-07 18:39:45 +02:00
|
|
|
{% if post.author %}
|
|
|
|
{% assign author = site.data.authors[post.author] %}
|
|
|
|
{% else %}
|
|
|
|
{% assign author = site.owner %}
|
|
|
|
{% endif %}
|
2013-05-24 16:25:31 +02:00
|
|
|
<entry>
|
|
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
|
|
|
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url }}" />
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
2013-06-27 23:25:25 +02:00
|
|
|
{% if post.modified %}<updated>{{ post.modified | to_xmlschema }}T00:00:00-00:00</updated>
|
2013-05-24 16:25:31 +02:00
|
|
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
2013-06-27 23:16:53 +02:00
|
|
|
{% else %}<published>{{ post.date | date_to_xmlschema }}</published>
|
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
|
2013-05-24 16:25:31 +02:00
|
|
|
<author>
|
2014-08-07 18:39:45 +02:00
|
|
|
<name>{{ author.name }}</name>
|
2013-06-27 23:16:53 +02:00
|
|
|
<uri>{{ site.url }}</uri>
|
2014-08-09 02:37:57 +02:00
|
|
|
{% if author.email %}<email>{{ author.email }}</email>{% endif %}
|
2013-05-24 16:25:31 +02:00
|
|
|
</author>
|
2015-01-30 15:37:42 +01:00
|
|
|
<content type="html">
|
|
|
|
{{ post.content | xml_escape }}
|
2016-02-22 20:58:16 +01:00
|
|
|
{% include feed-footer.html %}
|
2015-01-30 15:37:42 +01:00
|
|
|
</content>
|
2013-05-24 16:25:31 +02:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2014-01-17 10:44:28 +01:00
|
|
|
</feed>
|