aboutsummaryrefslogtreecommitdiff
path: root/templates/feed.xml
diff options
context:
space:
mode:
Diffstat (limited to 'templates/feed.xml')
-rw-r--r--templates/feed.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/feed.xml b/templates/feed.xml
new file mode 100644
index 00000000..e509fd10
--- /dev/null
+++ b/templates/feed.xml
@@ -0,0 +1,15 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<rss version="2.0">
3 <channel>
4 <title>{{ title }}</title>
5 <link>{{ site_url }}</link>
6 <description>gnunet.org feed</description>
7 {% for item in items %}
8 <item>
9 <title>{{ item[0] }}</title>
10 <link href="{{ item[1] }}" />
11 <content type="html">{{ item[2] }}</content>
12 </item>
13 {% endfor %}
14 </channel>
15</rss>