{include file="$blogtemplate/header.template"}

Sample RSS Feeds using the RSS parser included in this package

{if $rss->parse("http://rss.news.yahoo.com/rss/topstories")}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://rss.news.yahoo.com/rss/internet"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://rss.news.yahoo.com/rss/rssblog"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://blog.tonymasiello.com/rss.php?blogId=1&profile=rss090"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://www.mozillazine.org/atom.xml"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://www.nytimes.com/services/xml/rss/nyt/Science.xml"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{assign var=feed value="http://news.bbc.co.uk/rss/newsonline_uk_edition/world/rss091.xml"} {if $rss->parse($feed)}
{assign var=channel value=$rss->getChannel()} {$channel->getTitle()|escape}
    {foreach name=rss from=$rss->getItems() item=rssItem} {if $smarty.foreach.rss.iteration < 11}
  • {$rssItem->getTitle()|escape}
  • {/if} {/foreach} {/if}

{include file="$blogtemplate/footer.template"}