Creating a Feed for others to read
The Feed module also allows content from your site to be formatted into a feed for others to read.
The location to find the feed is at:
your-site.com/feed/(module url)
some examples:
your-site.com/feed/audio
your-site.com/feed/blog
your-site.com/feed/gallery
The structure of the feed is quite simple as its the same for all modules. If you want to create a custom structure for your feed you can do that by placing a file called
(Module Name)_item_rss.tpl into your skin.
eg:
/skins/(YOUR SKIN)/jrAudio_item_rss.tpl
to take control of what you want the structure of that RSS feed to look like. By default it will look like this:
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>{$rss_title}</title>
<description>{$rss_desc}</description>
<link>{$rss_url}</link>
<lastBuildDate>{$rss_builddate}</lastBuildDate>
{foreach $_items as $item}
<item>
<title>{$item.title}</title>
<link>{$item.link}</link>
<description>{$item.description|jrCore_format_string:$item.profile_quota_id|strip_tags}</description>
<pubDate>{$item.pubdate}</pubDate>
</item>
{/foreach}
</channel>
</rss>