mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 04:09:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2166 201d5d3c-b55e-5fd7-737f-ddc643e51545
29 lines
957 B
HTML
29 lines
957 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="documentBox">
|
|
<div class="header">
|
|
<!--@if($widget_info->title)-->
|
|
<h2>{$widget_info->title}</h2>
|
|
<!--@else-->
|
|
<h2>newest documents</h2>
|
|
<!--@end-->
|
|
</div>
|
|
<ul>
|
|
<!--@foreach($widget_info->document_list as $oDocument)-->
|
|
<li><a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a></li>
|
|
<!--@end-->
|
|
</ul>
|
|
</div>
|