mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 13:19:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2970 201d5d3c-b55e-5fd7-737f-ddc643e51545
29 lines
941 B
HTML
29 lines
941 B
HTML
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
|
<!--%import("css/common.css")-->
|
|
<!--@if($colorset=="bluish_green")-->
|
|
<!--%import("css/bluish_green.css")-->
|
|
<!--@elseif($colorset=="green")-->
|
|
<!--%import("css/green.css")-->
|
|
<!--@elseif($colorset=="pink")-->
|
|
<!--%import("css/pink.css")-->
|
|
<!--@elseif($colorset=="blue")-->
|
|
<!--%import("css/blue.css")-->
|
|
<!--@else-->
|
|
<!--%import("css/red.css")-->
|
|
<!--@end-->
|
|
|
|
<div class="commentBox">
|
|
<div class="header">
|
|
<!--@if($widget_info->title)-->
|
|
<h2>{$widget_info->title}</h2>
|
|
<!--@else-->
|
|
<h2>newest comments</h2>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<ul>
|
|
<!--@foreach($widget_info->comment_list as $val)-->
|
|
<li><a href="{getUrl('','document_srl',$val->get('document_srl'))}#comment_{$val->get('comment_srl')}">{$val->getSummary(60)}</a></li>
|
|
<!--@end-->
|
|
</ul>
|
|
</div>
|