blog/source/atom.xml

37 lines
1.4 KiB
XML
Raw Normal View History

2012-06-03 11:40:57 +00:00
---
layout: nil
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[{{ site.title }}]]></title>
<link href="{{ site.url }}/atom.xml" rel="self"/>
<link href="{{ site.url }}/"/>
2013-01-02 21:20:36 +00:00
{% if site.hub_url %}<link href="{{ site.hub_url }}" rel="hub"/>{% endif %}
2012-06-03 11:40:57 +00:00
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/</id>
<author>
<name><![CDATA[{{ site.author | strip_html }}]]></name>
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
</author>
<generator uri="http://octopress.org/">Octopress</generator>
{% 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>
2013-01-21 00:18:38 +00:00
{% if site.flattr_user %}
2013-01-21 06:46:02 +00:00
{% include flattr_param.html %}
2013-01-21 00:18:38 +00:00
<link rel="payment" href="https://flattr.com/submit/auto?{{ flattr_param }}" type="text/html" />
{% endif %}
2012-06-03 11:40:57 +00:00
<id>{{ site.url }}{{ post.id }}</id>
2013-01-02 22:33:33 +00:00
<content type="html"><![CDATA[
2013-01-20 10:11:19 +00:00
<img src="//piwik.higgsboson.tk/piwik.php?idsite=1&action_name={{post.title | cgi_escape}}" style="border:0" alt="" />
2013-01-02 22:33:33 +00:00
{{ post.content | expand_urls: site.url | cdata_escape }}
2013-01-20 16:55:35 +00:00
{% if site.flattr_user %} {% include flattr_feed_button.html %} {% endif %}
2013-01-02 22:33:33 +00:00
]]></content>
2012-06-03 11:40:57 +00:00
</entry>
{% endfor %}
</feed>