mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 03:39:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2113 201d5d3c-b55e-5fd7-737f-ddc643e51545
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
|
|
|
<!--@if($colorset=="black")-->
|
|
<!--%import("css/black.css")-->
|
|
<!--@else-->
|
|
<!--%import("css/white.css")-->
|
|
<!--@end-->
|
|
|
|
<div class="latest">
|
|
<!--@if($widget_info->title)-->
|
|
<h2>{$widget_info->title}</h2>
|
|
<!--@end-->
|
|
<ul>
|
|
<!--@foreach($widget_info->document_list as $oDocument)-->
|
|
<li>
|
|
<span class="date">[{$oDocument->getRegdate("Y-m-d")}]</span>
|
|
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a>
|
|
<!--@if($oDocument->getCommentCount())-->
|
|
<span class="comment"><a href="{$oDocument->getPermanentUrl()}#comment">*{$oDocument->getCommentCount()}</a></span>
|
|
<!--@end-->
|
|
<span class="writer">- {$oDocument->getNickName()}</span>
|
|
</li>
|
|
<!--@end-->
|
|
</ul>
|
|
<!--@if($widget_info->module_name)-->
|
|
<a href="{getUrl('','mid',$widget_info->module_name)}" class="more">more</a>
|
|
<!--@end-->
|
|
</div>
|