aboutsummaryrefslogtreecommitdiffstats
path: root/templates/feed.xml
blob: a25213476eee28d951a7082033f5530ccac5254b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

<rss version="2.0">
    <channel>
        <title>{{ config.TITLE }}</title>
        <link>{{ config.LINK }}</link>
        <description>{{ config.DESCRIPTION }}</description>
        <!-- Optional -->
        <language>{{ config.LANGUAGE }}</language>
        <pubDate> {{ config.PUBDATE }}</pubDate>
        <lastBuildDate> {{ config.LASTBUILDDATE }}</lastBuildDate>
        <docs>{{ config.DOCS }}</docs>
        <generator>{{ config.GENERATOR }}</generator>
        <managingEditor>{{ config.AUTHOR }}</managingEditor>
        <webMaster>{{ config.WEBMASTER }}</webMaster>
        {% for item in items %}
        <item>
            <title>{{ item.TITLE }}</title>
            <link>{{ item.LINK }}</link>
            <guid>{{ item.LINK }}</guid>
            <description>{{ item.DESCRIPTION }}</description>
            <pubDate>{{ item.LAST_UPDATE }}</pubDate>
            <category>{{ item.SITE_DIR }}</category>
            <author>{{ config.AUTHOR }}</author>
        </item>
        {% endfor %}
    </channel>
</rss>