mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 08:39:58 +09:00
포럼형 위젯 스킨 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3577 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
905826c0d1
commit
554ccd6d71
20 changed files with 339 additions and 0 deletions
47
widgets/forum/skins/default/list.html
Normal file
47
widgets/forum/skins/default/list.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!--%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--> <!--@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-->
|
||||
|
||||
<!--@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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue