Exemple #1
0
        Para trocar a fonte clique na caixa abaixo
    </label><br />    
    <h2 id="h2-rss">
        <select id="change-rss">
            <!--<option value=""></option>-->
            <?$i = 0;?>
            <?foreach($allRSS as $rss):?>
            <option value="<?echo $rss->id()?>" <?if($i++ == 0) echo "selected='selected'"?>>
                    <?echo ($rss->title())?>
            </option>
            <?endforeach;?>
        </select>
    </h2>
</div>
<div id="news-items" class="content">
    <!--<h6><?echo $reader->rssFont()?> - <span style="font-size: 11px; font-weight: normal;"><?echo $reader->rssfontDescription()?></span></h6>-->
    <ul>
    <?$i = 7;?>
    <?while($iterator->valid() && $i-- > 0):?>                
        <li>
            <a class="news-rss" href="<?echo $iterator->current()->link()?>">                
                <span class="pubdate" style="font-size: 11px">[<?echo $iterator->current()->pubDate()?>]</span>
                -
                <span class="title-rss"><?echo $iterator->current()->title()?></span><br />
                <!--<span class=description-rss"><?//echo $iterator->current()->description()?></span>-->
            </a>
        </li>
    <?$iterator->next()?>
    <?endwhile?>
    </ul>    
</div>