rhymix/widgets/newest_comment/skins/xe_official/list.html

28 lines
1,011 B
HTML

<!--// 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--@if($colorset=="black")-->
<!--%import("css/black.css")-->
<!--@else-->
<!--%import("css/white.css")-->
{@ $colorset = "white" }
<!--@end-->
<div class="latest_comment_{$colorset}">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@end-->
<ul>
<!--@foreach($widget_info->comment_list as $val)-->
<li>
<!--@if($widget_info->display_regdate == 'Y')-->
<span class="date">{$val->getRegdate("Y-m-d")}</span>
<!--@end-->
<span class="title">
<a href="{getUrl('','document_srl',$val->get('document_srl'))}#comment_{$val->get('comment_srl')}">{$val->getSummary($widget_info->subject_cut_size)}</a>
</span>
</li>
<!--@end-->
</ul>
<!--@if($widget_info->title && $widget_info->module_name)-->
<a href="{getUrl('','mid',$widget_info->module_name)}" class="more">more</a>
<!--@end-->
</div>