aboutsummaryrefslogtreecommitdiff
path: root/sites/www/_templates/rss.xml
blob: f6f9cbd11618e4622dd9c513ef93496304ccb2a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>