mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
27 lines
805 B
XML
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>
|