]> git.ipfire.org Git - ipfire.org.git/blob - templates/rss.xml
Move everything to the root of the repository.
[ipfire.org.git] / templates / rss.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version="2.0">
3 <channel>
4 <title>{{ title }}</title>
5 <link>{{ url }}</link>
6 <description>{{ description }}</description>
7 <language>{{ lang }}</language>
8 <copyright>IPFire Team</copyright>
9 <pubDate>Thu, 8 Nov 2007 00:00:00 +0200</pubDate>
10 {% for item in items %}
11 <item>
12 <title>{{ escape(item.title) }}</title>
13 <link>{{ item.url }}</link>
14 <author>{{ item.author.mail }} ({{ item.author.name }})</author>
15 <guid>{{ item.url }}</guid>
16 <pubDate>{{ item.date.strftime("%a, %d %b %Y %H:%M:%S +0200") }}</pubDate>
17 <description>
18 <![CDATA[
19 {{ item.text }}
20 ]]>
21 </description>
22 </item>
23 {% end %}
24 </channel>
25 </rss>