2011-07-19 22:28:48 -04:00
|
|
|
---
|
|
|
|
layout: nil
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
|
2011-08-04 15:40:09 -04:00
|
|
|
<title>{{ site.title }}</title>
|
2011-07-19 22:28:48 -04:00
|
|
|
<link href="{{ site.url }}/atom.xml" rel="self"/>
|
|
|
|
<link href="{{ site.url }}/"/>
|
|
|
|
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}/</id>
|
|
|
|
<author>
|
|
|
|
<name>{{ site.author }}</name>
|
|
|
|
{% if site.email %}
|
|
|
|
<email>{{ site.email }}</email>
|
|
|
|
{% endif %}
|
|
|
|
</author>
|
|
|
|
|
2011-08-04 15:40:09 -04:00
|
|
|
{% for post in site.posts limit: 20 %}
|
2011-07-19 22:28:48 -04:00
|
|
|
<entry>
|
|
|
|
<title>{{ post.title }}</title>
|
|
|
|
<link href="{{ site.url }}{{ post.url }}"/>
|
|
|
|
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
|
|
<id>{{ site.url }}{{ post.id }}</id>
|
2011-08-04 15:40:09 -04:00
|
|
|
<content type="html">{{ post.content | expand_urls: site.url | xml_escape }}</content>
|
2011-07-19 22:28:48 -04:00
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
|
|
|
</feed>
|