Merge pull request #229 from github/chat-slide-tweak
[another_project.git] / atom.xml
1 ---
2 layout: nil
3 ---
4 <?xml version="1.0" encoding="utf-8"?>
5 <feed xmlns="http://www.w3.org/2005/Atom">
6
7  <title>{{ site.title }}</title>
8  <link href="http://{{ site.domain }}/atom.xml" rel="self"/>
9  <link href="http://{{ site.domain }}/"/>
10  <updated>{{ site.time | date_to_xmlschema }}</updated>
11  <id>http://{{ site.domain }}/</id>
12  <author>
13    <name>{{ site.author }}</name>
14    <email>{{ site.email }}</email>
15  </author>
16
17  {% for post in site.posts %}
18  <entry>
19    <title>{{ post.title }}</title>
20    <link href="http://{{ site.domain }}{{ post.url }}"/>
21    <updated>{{ post.date | date_to_xmlschema }}</updated>
22    <id>http://{{ site.domain }}{{ post.id }}</id>
23    <content type="html">{{ post.content | xml_escape }}</content>
24  </entry>
25  {% endfor %}
26
27 </feed>