mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-22 04:39:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2018 201d5d3c-b55e-5fd7-737f-ddc643e51545
30 lines
1.2 KiB
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>
|