diff options
Diffstat (limited to 'template/rss.xml.j2')
-rw-r--r-- | template/rss.xml.j2 | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/template/rss.xml.j2 b/template/rss.xml.j2 index b9a29f7..872e551 100644 --- a/template/rss.xml.j2 +++ b/template/rss.xml.j2 @@ -20,29 +20,27 @@ #} <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> - {% for siteconfitem in siteconf %} - <channel> - <atom:link href="https://{{ siteconfitem['baseurl'] }}/{{ lang }}/rss.xml" rel="self" type="application/rss+xml" /> - <title>{{ siteconfitem['rsstitle'] }}</title> - <language>{{ lang }}</language> - <description>{{ siteconfitem['rssdescr']|e }}</description> - <link>https://{{ siteconfitem['baseurl'] }}/</link> - <lastBuildDate>{{ now }}</lastBuildDate> - {% for newspostitem in newsposts %} - <item> - <guid>https://{{ siteconfitem['baseurl'] }}/{{ lang }}{{ siteconfitem['newsloc'] }}{{ newspostitem['page'] }}</guid> - <link>https://{{ siteconfitem['baseurl'] }}/{{ lang }}{{ siteconfitem['newsloc'] }}{{ newspostitem['page'] }}</link> - <pubDate>{{ conv_date_rfc822(newspostitem["date"]) }}</pubDate> - <title>{{ newspostitem['title']|e }}</title> - <description> - <![CDATA[ - <article> - {{ newspostitem['content'] }} - </article> - ]]> - </description> - </item> - {% endfor %} - </channel> - {% endfor %} + <channel> + <atom:link href="https://{{ siteconf['baseurl'] }}/{{ lang }}/rss.xml" rel="self" type="application/rss+xml" /> + <title>{{ siteconf['rsstitle'] }}</title> + <language>{{ lang }}</language> + <description>{{ siteconf['rssdescr']|e }}</description> + <link>https://{{ siteconf['baseurl'] }}/</link> + <lastBuildDate>{{ now }}</lastBuildDate> + {% for newspostitem in newsposts %} + <item> + <guid>https://{{ siteconf['baseurl'] }}/{{ lang }}{{ siteconf['newsloc'] }}{{ newspostitem['page'] }}</guid> + <link>https://{{ siteconf['baseurl'] }}/{{ lang }}{{ siteconf['newsloc'] }}{{ newspostitem['page'] }}</link> + <pubDate>{{ conv_date_rfc822(newspostitem["date"]) }}</pubDate> + <title>{{ newspostitem['title']|e }}</title> + <description> + <![CDATA[ + <article> + {{ newspostitem['content'] }} + </article> + ]]> + </description> + </item> + {% endfor %} + </channel> </rss> |