mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 11:49:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2134 201d5d3c-b55e-5fd7-737f-ddc643e51545
27 lines
1 KiB
HTML
27 lines
1 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($oDocument->thumbnailExists($widget_info->thumbnail_width) )-->
|
|
|
|
<li class="ni_item">
|
|
<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="" class="thumbnail" /></a>
|
|
|
|
<div><a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->title_length)}</a></div>
|
|
<div class="member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</div>
|
|
</li>
|
|
|
|
{@ $count++}
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
</ul>
|
|
<div class="clear"></div>
|
|
</div>
|