25 lines
968 B
XML
25 lines
968 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ title|e }}</title>
|
|
<link>{{ link|e }}</link>
|
|
<description>{{ description|e }}</description>
|
|
<lastBuildDate>{{ last_build_date|e }}</lastBuildDate>
|
|
<generator>NewsArchiver</generator>
|
|
<atom:link href="{{ link|e }}/rss" rel="self" type="application/rss+xml" />
|
|
{% for item in items %}
|
|
<item>
|
|
<title>{{ item.title|e }}</title>
|
|
<link>{{ item.link|e }}</link>
|
|
{% if item.pubDate %}
|
|
<pubDate>{{ item.pubDate|e }}</pubDate>
|
|
{% endif %}
|
|
{% if item.author %}
|
|
<author>{{ item.author|e }}</author>
|
|
{% endif %}
|
|
<guid isPermaLink="false">{{ item.guid|e }}</guid>
|
|
<description>{{ item.description|e }}</description>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss> |