Rss Audio Reader Custom
Using Jamroom
hello
@michael
I don't have a custom file.tpl at them moment am testing Feed Module and testing them first. before i create my own,
am learning how jamroom works inside out and testing everything jamroom have to offer,
here is the feed module code:
url where I got the error are the follow
domain.com/feed/streams/don-omar
rss.tpl
<?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>
rss_list.tpl
{if isset($jrFeed.feed)}
<div class="title"><h2>{$jrFeed.feed.title}</h2></div>
<div class="block_content">
<div class="item" style="height:462px;overflow:auto;">
{if isset($jrFeed.feed.item)}
{foreach from=$jrFeed.feed.item item="item"}
<div class="normal">
<a href="{$item.link}">{$item.title}</a><br>
{$item.pubDate|jrCore_date_format}<br>
{$item.description}<br>
</div>
<hr>
{/foreach}
{/if}
</div>
</div>
{/if}
Thank You
updated by @serveion: 12/23/15 08:23:24PM