24 lines
799 B
XML
24 lines
799 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>{{ settings.title }}</title>
|
|
<description>{{ settings.sub_title }}</description>
|
|
<link>{{ settings.url }}</link>
|
|
<atom:link href="{{ settings.url }}/feed.xml" rel="self" type="application/rss+xml" />
|
|
|
|
{% for gallery in galleries %}
|
|
{% set absolute_url = settings.url + "/" + gallery.link -%}
|
|
<item>
|
|
<title>{{ gallery.title }}</title>
|
|
<link>{{ absolute_url }}</link>
|
|
<guid>{{ gallery.link }}</guid>
|
|
{% if gallery.sub_title -%}
|
|
<description>{{ gallery.sub_title }}</description>
|
|
{% endif -%}
|
|
<pubDate>{{ gallery.date }}</pubDate>
|
|
</item>
|
|
{% endfor %}
|
|
|
|
</channel>
|
|
</rss>
|