beets/blog/atom.xml
2016-06-19 13:59:04 -07:00

27 lines
805 B
XML

---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>The beets blog.</title>
<link href="{{ site.url }}/blog/" />
<link href="{{ site.url }}/blog/atom.xml" rel="self" />
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}/blog/</id>
<author>
<name>Adrian Sampson</name>
<email>adrian@radbox.org</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>