mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
18 lines
No EOL
783 B
HTML
18 lines
No EOL
783 B
HTML
<include target="./common_header.html" />
|
|
<div class="xm">
|
|
<h2 class="hx h2">{$member_title = $lang->cmd_view_saved_document}</h2>
|
|
<ul class="lt">
|
|
<li loop="$document_list=>$no,$val">
|
|
<a href="{getUrl('','document_srl',$val->document_srl)}" target="_blank">
|
|
{$val->getTitle()}
|
|
<span class="memberInfo">{$val->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" /> |