diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-01-30 10:57:50 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-01-30 10:57:50 -0800 |
commit | 0d6bf1d9656dc3d15f76169d584268de999b9791 (patch) | |
tree | f7c35ed962fd29727fbe304820b488913a77d47f /sites/www/_templates | |
parent | 94580cebee300b02c3e798830396d5b4f0cc6b24 (diff) | |
parent | c4276679284649f62b646a057f9ca50f0c644a2d (diff) |
Merge branch '1.12'
Diffstat (limited to 'sites/www/_templates')
-rw-r--r-- | sites/www/_templates/rss.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sites/www/_templates/rss.xml b/sites/www/_templates/rss.xml new file mode 100644 index 00000000..f6f9cbd1 --- /dev/null +++ b/sites/www/_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> |