aboutsummaryrefslogtreecommitdiff
path: root/templates/feed.atom.j2
blob: 0a201ff22666178778124d70cf8ebc8daf020bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<author>Author's name</author</author>
	<title>Feed title</title>
	{% for item in items %}
	<entry>
		<title>{{ item[0] }}</title>
		<link href="{{ item[1] }}" />
		<content type="html">{{ item[2] }}</content>
	</entry>
	{% endfor %}
</feed>