diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-10 19:26:04 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-21 16:14:26 -0800 |
commit | c74ff2a16e47bdf31f8ad17bbfbe2da5d03803c6 (patch) | |
tree | 59b1240b3328640776448a4f717f6bb51fd91d15 /site/_templates/rss.xml | |
parent | 5c5bf6e844d63a14f586d9166c536ab0978b684b (diff) |
Import paramiko.org repository @ 3ac370054ef10fb060fe75fff25fe3a70ecc02c0
Diffstat (limited to 'site/_templates/rss.xml')
-rw-r--r-- | site/_templates/rss.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/site/_templates/rss.xml b/site/_templates/rss.xml new file mode 100644 index 00000000..f6f9cbd1 --- /dev/null +++ b/site/_templates/rss.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <atom:link href="{{ atom }}" rel="self" type="application/rss+xml" /> + <title>{{ title }}</title> + <link>{{ link }}</link> + <description>{{ description }}</description> + <pubDate>{{ date }}</pubDate> + {% for link, title, desc, date in posts %} + <item> + <link>{{ link }}</link> + <guid>{{ link }}</guid> + <title><![CDATA[{{ title }}]]></title> + <description><![CDATA[{{ desc }}]]></description> + <pubDate>{{ date }}</pubDate> + </item> + {% endfor %} + </channel> +</rss> |