RSS Simple Example

This example shows the RSS macro in its simplest form. The parent parameter is the only mandatory parameter and given that parameter, the macro outputs a valid RSS feed where all the child items of the selected parent are displayed in the feed where the most recent item is the first in the list. When items are added directly below the selected parent, the RSS feed is automatically updated.

Smartsite SXML CopyCode image Copy Code
<se:rss parent="287" />
Example Result CopyCode image Copy Code
<rss version="2.0">
    <channel>
        <title>Nieuws</title>
        <description>Altijd het laatste het nieuws</description>
        <language>en-us</language>
        <link>http://localhost:7812/NL/Site_Root/Gisteren_nl/Nieuws.html</link>
        <copyright></copyright>
        <generator>Smartsite iXperion Test Suite 1.0.0.0</generator>
        
        <item>
            <title>Overig nieuws</title>
            <link>http://localhost/NL/Site_Root/Gisteren_nl/Nieuws/Overig_nieuws.html</link>
            <author>erijss@smartsite.nl (Erwin Rijss (Smartsite BV))</author>
            <pubDate>Fri, 21 Jul 2006 16:38:04 GMT</pubDate>
            <description>Als het nieuws dat niet in de categoriƫn Binnenlands, Buitenlands en Sport valt</description>
            <guid isPermaLink="false">NWS_20060721163704</guid>
        </item>
        <item>
            <title>Sport nieuws</title>
            <link>http://localhost/NL/Site_Root/Gisteren_nl/Nieuws/Sport_nieuws.html</link>
            <author>erijss@smartsite.nl (Erwin Rijss (Smartsite BV))</author>
            <pubDate>Fri, 21 Jul 2006 13:34:30 GMT</pubDate>
            <description>Het laatste actuele sport nieuws</description>
            <guid isPermaLink="false">NWS_20060721133406</guid>
        </item>
        <item>
            <title>Buitenlands nieuws</title>
            <link>http://localhost/NL/Site_Root/Gisteren_nl/Nieuws/Buitenlands_nieuws.html</link>
            <author>erijss@smartsite.nl (Erwin Rijss (Smartsite BV))</author>
            <pubDate>Fri, 21 Jul 2006 12:37:49 GMT</pubDate>
            <description>Een overzicht van het buitenlandse nieuws</description>
            <guid isPermaLink="false">NWS_20060721123652</guid>
        </item>
    </channel>
</rss>