Your IP : 216.73.216.240
<?php
/**
* @package My RSS Reader
* @copyright Copyright (C) 2010 FalsinSoft. All rights reserved.
* @license GNU/GPL
* @website http://falsinsoft-joomla.blogspot.com
* @email falsinsoft@gmail.com
*
*/
defined('_JEXEC') or die('Restricted access');
JHTML::_('behavior.tooltip');
JHTML::_('stylesheet', 'myrssreader.css', 'components/com_myrssreader/assets/');
$advertisement_counter = 0;
?>
<style type="text/css">
span.rss_title,
a.rss_title,
a.rss_title:link,
a.rss_title:visited
{
font-size: <?php echo $this->layout->feed_title_size; ?>px;
}
#rss_copyright
{
text-align: center !important;
font-size: 10px;
width: auto;
}
</style>
<?php
if($this->layout->show_pages_links == 0 || $this->layout->show_pages_links == 1)
{
echo '<div class="pagination">'.$this->pagination->getPagesLinks().'</div>';
}
if($this->layout->show_advertisement == 1)
{
if($this->layout->advertisement_position == 0 || $this->layout->advertisement_position == 2)
{
echo '<br /><br /><center>'.$this->adv_html_code_list[$advertisement_counter++].'</center><br /><br />';
if($advertisement_counter >= count($this->adv_html_code_list)) $advertisement_counter = 0;
}
}
switch($this->layout->feeds_show_style)
{
default:
case 0:
echo $this->model->showBlogStyle($this->rss_feeds_list, $this->layout);
break;
case 1:
echo $this->model->showExpandCollapseStyle($this->rss_feeds_list, $this->layout);
break;
}
if($this->layout->show_advertisement == 1)
{
if($this->layout->advertisement_position == 1 || $this->layout->advertisement_position == 2)
{
echo '<br /><br /><center>'.$this->adv_html_code_list[$advertisement_counter++].'</center><br /><br />';
if($advertisement_counter >= count($this->adv_html_code_list)) $advertisement_counter = 0;
}
}
if($this->layout->show_pages_links == 0 || $this->layout->show_pages_links == 2)
{
echo '<div class="pagination">'.$this->pagination->getPagesLinks().'</div>';
}
if($this->layout->show_powered_by_link)
{
echo '<br />';
echo '<div id="rss_copyright">';
echo 'Powered by <a href="http://falsinsoft-joomla.blogspot.com" target="_blank">My RSS Reader</a>';
echo '</div>';
}
?>