mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 02:39:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2892 201d5d3c-b55e-5fd7-737f-ddc643e51545
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
|
|
|
|
<!--@if($colorset=="normal"||!$colorset)-->
|
|
<!--%import("normal/style.css")-->
|
|
|
|
<!--@elseif($colorset=="blue")-->
|
|
<!--%import("blue/style.css")-->
|
|
|
|
<!--@end-->
|
|
|
|
<div class="newest_document_default_{$colorset}">
|
|
<div class="newest_document_default_box">
|
|
<div class="title_box">
|
|
<div class="title">{$widget_info->title}</div>
|
|
<!--@if($widget_info->module_name)-->
|
|
<div class="more"><a href="{getUrl('','mid',$widget_info->module_name)}">more</a></div>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@foreach($widget_info->document_list as $oDocument)-->
|
|
<div class="document_box">
|
|
<div class="document">
|
|
<a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitle($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>
|
|
|
|
{$oDocument->printExtraImages($widget_info->duration_new)}
|
|
</div>
|
|
<div class="regdate">{$oDocument->getRegdate("Y-m-d")}</div>
|
|
</div>
|
|
<!--@end-->
|
|
</div>
|
|
</div>
|