]> projects.mako.cc - scuttle/blob - templates/sidebar.tpl.php
updated readme with information on a series of bugs I know exist
[scuttle] / templates / sidebar.tpl.php
1 <div id="sidebar">
2     <?php
3     $size = count($sidebar_blocks);
4     for ($i = 0; $i < $size; $i++) {
5         $this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]);
6     }
7
8     if (isset($rsschannels)) {
9         $size = count($rsschannels);
10     } else {
11         $size = 0;
12     }
13     for ($i = 0; $i < $size; $i++) {
14         echo '<p><a href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a></p>'; 
15     }
16     ?>
17 </div>

Benjamin Mako Hill || Want to submit a patch?