mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 21:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5188 201d5d3c-b55e-5fd7-737f-ddc643e51545
28 lines
1,011 B
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>
|