.themes/classic/source/atom.xml
aa230616
 ---
 layout: nil
 ---
 <?xml version="1.0" encoding="utf-8"?>
 <feed xmlns="http://www.w3.org/2005/Atom">
 
63c3ba65
   <title>{{ site.title | xml_escape }}</title>
aa230616
   <link href="{{ site.url }}/atom.xml" rel="self"/>
   <link href="{{ site.url }}/"/>
   <updated>{{ site.time | date_to_xmlschema }}</updated>
   <id>{{ site.url }}/</id>
   <author>
63c3ba65
     <name>{{ site.author | xml_escape }}</name>
aa230616
     {% if site.email %}
63c3ba65
       <email>{{ site.email | xml_escape }}</email>
aa230616
     {% endif %}
   </author>
f4a6bd2a
   <generator uri="http://octopress.org/">Octopress</generator>
aa230616
 
3525825e
   {% for post in site.posts limit: 20 %}
aa230616
   <entry>
63c3ba65
     <title>{{ post.title | xml_escape }}</title>
aa230616
     <link href="{{ site.url }}{{ post.url }}"/>
     <updated>{{ post.date | date_to_xmlschema }}</updated>
     <id>{{ site.url }}{{ post.id }}</id>
0fa8732e
     <content type="html">{{ post.content | expand_urls: site.url | xml_escape }}</content>
aa230616
   </entry>
   {% endfor %}
 </feed>