rhymix/widgets/forum/skins/default/list.html
zero 554ccd6d71 포럼형 위젯 스킨 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3577 201d5d3c-b55e-5fd7-737f-ddc643e51545
2008-01-23 07:01:21 +00:00

47 lines
2 KiB
HTML

<!--%import("css/common.css")-->
<div class="xeForum">
<img src="./images/lt.gif" alt="" class="fl" />
<img src="./images/rt.gif" alt="" class="fr" />
<div class="forumTable">
<table cellspacing="0" class="xeForum clear">
<col width="60" />
<col />
<col width="70" />
<col width="70" />
<col width="160" />
<tr class="top">
<th colspan="2" class="title"><!--@if($widget_info->title)-->{$widget_info->title}<!--@else-->&nbsp;<!--@end--></th>
<th class="topic">{$lang->topic}</th>
<th class="replies">{$lang->replies}</th>
<th class="last_post">{$lang->last_post}</th>
</tr>
<!--@foreach($widget_info->modules as $val)-->
<tr class="content">
<td class="icon"><img src="./images/icon.gif" alt="icon" /></td>
<td class="title">
<strong><a href="{getUrl('','mid',$val->mid)}">{$val->title}</a></strong>
<p>{$val->description}</p>
</td>
<td class="topic">{number_format($val->document_count)}</td>
<td class="replies">{number_format($val->comment_count)}</td>
<td class="last_post">
<!--@if($val->last_comment)-->
<div class="author">
<span class="member_{$val->last_comment->member_srl}">{$val->last_comment->nick_name}</span>
<a href="{getUrl('','document_srl',$val->last_comment->document_srl)}#comment_{$val->last_comment->comment_srl}"><img src="./images/replies.gif" alt="go" /></a>
</div>
<div class="date">{zdate($val->last_comment->regdate,"Y-m-d H:i")}</div>
<!--@else-->
&nbsp;
<!--@end-->
</td>
</tr>
<!--@end-->
</table>
</div>
<img src="./images/lb.gif" alt="" class="fl" />
<img src="./images/rb.gif" alt="" class="fr" />
<div class="clear"></div>
</div>