Page 1 of 1

Integrating RSS

Posted: Sat 17. Oct 2009, 06:30
by slinkyomeara
Hello,
i would like to integrate RSS into my site
My proposal is this:
To modify a content template to be designed around the XML rss standard.

example:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">

<channel>
<title>The title of my RSS 2.0 Feed</title>
<link>http://www.example.com/</link>
<description>News</description>
<lastBuildDate>Mon, 12 Sep 2005 18:37:00 GMT</lastBuildDate>
<language>en-us</language>

<item>

<title> [article summary] </title>

<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
<!-- put more items here -->

</channel>
</rss>