1.Node

2. Pagetype

RSS.xml


3.Template

Exemple from http://www.bernergesundheit.ch/de/home.html

The root of feed ist "news" Node

<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
    {usecontent node=news}
    <title>{usecontent node=root}{$title}{/usecontent} | {$title}</title>
    <link>{href node=root}</link>
    <description>{$title}</description>
    <language>{$lg}</language>
    <lastBuildDate>{'r'|date}</lastBuildDate>
    {/usecontent}
{list childrenof=news}
    <item>
        <title>{$title}</title>
        <link>{href node=$item.node}</link>
        <description>
        {transform function="htmlentities"}
            {$text|strip_tags nofilter}<br/>
            {if $ort}{$ort}<br/>{/if}
            {if $datetext}{$datetext}{else}{$date|date_format}{/if}
        {/transform}
        </description>
        <pubDate>{$date|rss_date}</pubDate>
    </item>
{/list}
</channel>
</rss>
{rss}

rss.tpl

4. Smarty Plugin rss_date.php

Copy this file in templates/smarty_plugins

modifier.rss_date.php

Attachments:

rss.tpl (text/plain)
screenshot 2014-10-20 at 09.24.00.png (image/png)
screenshot 2014-10-20 at 09.24.16.png (image/png)
rss.tpl (text/plain)
RSS.xml (text/xml)
modifier.rss_date.php (application/x-upload-data)