function ShowRSS_html_antenna($rss)
 {
     foreach ($rss as $date => $items) {
         foreach ($items as $item) {
             $link = $item['LINK'];
             $title = $item['TITLE'];
             $dstr = date("m/d H:i", $item['_TIMESTAMP']);
             $passage = PukiWikiFunc::get_passage($item['_TIMESTAMP']);
             $link = "<a href=\"{$link}\" title=\"{$title} {$passage}\" target=\"_blank\"><small style=\"font-size:60%;\">{$dstr} :</small> {$title} </a>";
             $this->items[$date][] = $this->format_link($link);
         }
     }
 }