rhymix/widgets/newest_images/skins/default/list.html

30 lines
1.2 KiB
HTML

<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--@if($colorset=="normal"||!$colorset)-->
<!--%import("css/normal.css")-->
<!--@end-->
<div class="ni_box">
<ul>
{@ $count = 0; }
<!--@foreach($widget_info->document_list as $oDocument)-->
<!--@if($count <= $widget_info->list_count && $oDocument->thumbnailExists($widget_info->thumbnail_width) )-->
<li class="ni_item">
<!--@if($oDocument->thumbnailExists($widget_info->thumbnail_width))-->
<a href="{getUrl('','document_srl',$oDocument->document_srl)}"><img src="{$oDocument->getThumbnail($widget_info->thumbnail_width)}" width="{$widget_info->thumbnail_width}" height="{$widget_info->thumbnail_width}" border="0" alt="" /></a>
<!--@else-->
<img src="./images/blank.gif" border="0" width="{$widget_info->thumbnail_width}" height="{$widget_info->thumbnail_width}" />
<!--@end-->
<br /><a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->title_length)}</a>
</li>
{@ $count++}
<!--@end-->
<!--@end-->
</ul>
<div class="clear"></div>
</div>