26 lines
765 B
XML
26 lines
765 B
XML
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<title><![CDATA[{{ site.title }}]]></title>
|
|
|
|
...
|
|
|
|
{% for post in site.posts limit: 20 %}
|
|
<entry>
|
|
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
|
<link href="{{ site.url }}{{ post.url }}"/>
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
|
{% if site.flattr_user %}
|
|
{% include flattr_param.html %}
|
|
<link rel="payment" href="https://flattr.com/submit/auto?{{ flattr_param }}" type="text/html" />
|
|
{% endif %}
|
|
<content type="html"><![CDATA[
|
|
{{ post.content | expand_urls: site.url | cdata_escape }}
|
|
]]></content>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|