1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-30 18:24:29 +01:00
vichan/templates/themes/rss/rss.xml

29 lines
805 B
XML
Raw Normal View History

2023-03-29 23:59:28 +02:00
{% apply spaceless %}
2016-01-14 20:16:51 +01:00
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/"
version="2.0">
<channel>
<description>
<![CDATA[{{ settings.subtitle }}]]>
</description>
<title>{{ settings.title }}</title>
<generator>Tinyboard {{ config.version }}</generator>
<link>{{ settings.base_url }}{{ config.root }}{{ settings.html }}</link>
{% for post in recent_posts %}
<item>
<title>{{ post.board_name }}</title>
<description>
<![CDATA[
<a href="{{ settings.base_url }}{{ post.link }}">
{{ post.snippet }}
</a>
]]>
</description>
<link>{{ settings.base_url }}{{ post.link }}</link>
<guid>{{ settings.base_url }}{{ post.link }}</guid>
</item>
{% endfor %}
</channel>
</rss>
2023-03-29 23:59:28 +02:00
{% endapply %}