mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fix #838 missing mobile skin for member comment list
This commit is contained in:
parent
f12e95c3b4
commit
dccca65905
1 changed files with 18 additions and 0 deletions
18
modules/member/m.skins/default/comment_list.html
Normal file
18
modules/member/m.skins/default/comment_list.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<include target="./common_header.html" />
|
||||
<div class="xm">
|
||||
<h2 class="hx h2">{$member_title = $lang->cmd_view_own_comment}</h2>
|
||||
<ul class="lt">
|
||||
<li loop="$comment_list => $no,$comment">
|
||||
<a href="{getUrl('','document_srl',$comment->document_srl)}#comment_{$comment->comment_srl}" onclick="window.open(this.href);return false;">
|
||||
{$comment->getSummary() ?: $lang->msg_no_text_comment}
|
||||
<span class="memberInfo">{$comment->getRegdate("Y-m-d")}</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="pn">
|
||||
<a cond="$page != 1" href="{getUrl('page',$page-1,'module_srl','','document_srl','')}" class="prev">{$lang->cmd_prev}</a>
|
||||
<strong>{$page} / {$page_navigation->last_page}</strong>
|
||||
<a cond="$page != $page_navigation->last_page" href="{getUrl('page',$page+1,'module_srl','','document_srl','')}" class="next">{$lang->cmd_next}</a>
|
||||
</div>
|
||||
</div>
|
||||
<include target="./common_footer.html" />
|
||||
Loading…
Add table
Add a link
Reference in a new issue