rhymix/widgets/rss_reader/skins/sz_xe/list.html
k10206 c7d8e42ec1 RSS 제목 출력 조건을 변경.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3218 201d5d3c-b55e-5fd7-737f-ddc643e51545
2007-12-07 09:45:23 +00:00

17 lines
No EOL
665 B
HTML

<!--%import("css/default.css")-->
<div class="rss_reader_sz_xe">
<div class="sz_{$colorset}">
<!--@if($widget_info->title)-->
<h2 title="{date('Y-m-d H:i:s')}"><a href="{$widget_info->rss->link}" onclick="window.open(this.href);return false">{$widget_info->title}</a></h2>
<!--@end-->
<ul>
<!--@foreach($widget_info->rss_list as $key => $item)-->
<li title="{strip_tags($item->description)}">
<span class="date">{$item->date}</span>
<span class="title"><a href="{$item->link}" onclick="window.open(this.href);return false">{$item->title}</a></span>
</li>
<!--@end-->
</ul>
</div>
</div>