mirror of
https://github.com/sruupl/batflat.git
synced 2026-01-13 09:22:03 +01:00
23 lines
638 B
XML
23 lines
638 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<rss version="2.0">
|
|
<channel>
|
|
<title>{$settings.title}</title>
|
|
<link>{?= url() ?}</link>
|
|
<description>{$settings.description}</description>
|
|
{loop: $posts}
|
|
<item>
|
|
<title>{$value.title}</title>
|
|
<link>{$value.url}</link>
|
|
<description>{$value.content|cut:250}</description>
|
|
<pubDate>{$value.published_at}</pubDate>
|
|
{if: $value.cover_photo}
|
|
<image>
|
|
<url>{$value.cover_url}</url>
|
|
<title>{$value.title}</title>
|
|
<link>{?= url() ?}</link>
|
|
</image>
|
|
{/if}
|
|
</item>
|
|
{/loop}
|
|
</channel>
|
|
</rss> |