]> git.ipfire.org Git - ipfire.org.git/blame - templates/rss.xml
Move everything to the root of the repository.
[ipfire.org.git] / templates / rss.xml
CommitLineData
e48d9ae6
MT
1<?xml version="1.0" encoding="utf-8"?>
2<rss version="2.0">
3 <channel>
bcc3ed4d
MT
4 <title>{{ title }}</title>
5 <link>{{ url }}</link>
6 <description>{{ description }}</description>
e48d9ae6 7 <language>{{ lang }}</language>
bcc3ed4d 8 <copyright>IPFire Team</copyright>
e48d9ae6
MT
9 <pubDate>Thu, 8 Nov 2007 00:00:00 +0200</pubDate>
10 {% for item in items %}
11 <item>
a0ce191a 12 <title>{{ escape(item.title) }}</title>
bcc3ed4d
MT
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>
e48d9ae6
MT
17 <description>
18 <![CDATA[
de683d7c 19 {{ item.text }}
e48d9ae6
MT
20 ]]>
21 </description>
22 </item>
23 {% end %}
24 </channel>
25</rss>