rhymix/modules/integration_search/skins/xe_v3/comment.html
ChanMyeong 3c490ae3f3 xe_v3 upload.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7995 201d5d3c-b55e-5fd7-737f-ddc643e51545
2010-12-23 03:51:47 +00:00

24 lines
No EOL
1.2 KiB
HTML

<include target="header.html" cond="$where=='comment'" />
<div class="sTitle">
<h2>{$lang->comment} <em>({number_format($output->total_count)})</em></h2>
</div>
<div class="noResult" cond="!count($output->data)">
<h2>{$lang->msg_no_result}</h2>
</div>
<ul class="sResult" cond="count($output->data)">
<li loop="$output->data=>$no,$comment">
<p class="summary"><a href="{$comment->getPermanentUrl()}">{$comment->getSummary(200)}</a></p>
<p class="meta">
<span class="item"><strong>{$lang->writer}</strong> : {$comment->getNickName()}</span>
<span class="item">{$comment->getRegdate("Y-m-d")}</span>
</p>
</li>
</ul>
<div class="pagination" cond="$where=='comment'&&$output->page_navigation&&count($output->data)">
<a href="{getUrl('page','')}" class="direction prev"><span></span><span></span> {$lang->first_page}</a>
<block loop="$page_no=$output->page_navigation->getNextPage()">
<strong cond="$page==$page_no">{$page_no}</strong>
<a cond="$page!=$page_no" href="{getUrl('page',$page_no)}">{$page_no}</a>
</block>
<a href="{getUrl('page',$output->page_navigation->last_page)}" class="direction next"|cond="!$last_division">{$lang->last_page} <span></span><span></span></a>
</div>