-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
21 lines (21 loc) · 737 Bytes
/
atom.xml
File metadata and controls
21 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>A Year in mp3s</title>
<link href="{{ sourceUrl }}" rel="alternate" />
<link href="http://lukeyear.iheardata.com/feeds/atom" rel="self" />
<updated>{{ changedate }}</updated>
<author>
<name>r. luke dubois</name>
</author>
<id>http://lukeyear.iheardata.com/feeds/atom</id>
{% for item in items %}
<entry>
<title>{{ item.title }}</title>
<link href="{{ item.link }}" />
<link href="{{ item.link }}" rel="enclosure" length="{{ item.length }}" type="{{ item.mimeType }}" />
<id>{{ item.guid }}</id>
<updated>{{ item.pubDateString }}</updated>
<summary type="html">{{ item.description }}</summary>
</entry>
{% endfor %}
</feed>