aboutsummaryrefslogtreecommitdiff
path: root/templates/feed.xml
blob: e509fd10083a9797bc6d1dae170fe46d6b26b6ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
	<channel>
		<title>{{ title }}</title>
		<link>{{ site_url }}</link>
		<description>gnunet.org feed</description>
		{% for item in items %}
		<item>
			<title>{{ item[0] }}</title>
			<link href="{{ item[1] }}" />
			<content type="html">{{ item[2] }}</content>
		</item>
		{% endfor %}
	</channel>
</rss>