]> git.ipfire.org Git - ipfire.org.git/blob - templates/feeds/base.xml
Drop German translation
[ipfire.org.git] / templates / feeds / base.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version="2.0">
3 <channel>
4 <title>{% block title %}{% end block %}</title>
5 <link>{% block url %}{% end block %}</link>
6 <description>{% block description %}{% end block %}</description>
7 <language>en_GB</language>
8 <copyright>{% block copyright %}IPFire Team{% end block %}</copyright>
9 <pubDate>Thu, 8 Nov 2007 00:00:00 +0200</pubDate>
10 {% for item in items %}
11 <item>
12 <title>{{ item.title }}</title>
13 <link>{{ item.url }}</link>
14 <author>{{ item.author.email }} ({{ item.author.name }})</author>
15 <guid>{{ item.url }}</guid>
16 <pubDate>{{ item.published.strftime("%a, %d %b %Y %H:%M:%S +0200") }}</pubDate>
17 <description>
18 <![CDATA[{% raw item.markup %}]]>
19 </description>
20 </item>
21 {% end %}
22 </channel>
23 </rss>