Skip to content
Snippets Groups Projects
Commit a4351eb5 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Add simple template for rss xml files

parent aaa97957
Branches
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
{% for channel in channels %}
<channel>
<title>{{channel.title}}</title>
<link>{{channel.link}}</link>
<description>{{channel.description}}</description>
{% for item in channel.items %}
<item>
<title>{{item.title}}</title>
<link>{{item.link}}</link>
<description>{{item.description}}</description>
</item>
{% endfor %}
</channel>
{% endfor %}
</rss>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment