mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
39 lines
965 B
HTML
39 lines
965 B
HTML
<!--#include("header.html")-->
|
|
|
|
<!-- 목록 -->
|
|
<div>
|
|
<!--@foreach($document_list as $no => $document)-->
|
|
<!--@if($document && $grant->list)-->
|
|
<!--#include("./view_document.html")-->
|
|
<!--@end-->
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!-- 버튼 -->
|
|
<div>
|
|
<!--@if($grant->write_document)-->
|
|
<!-- 글쓰기 버튼 -->
|
|
<a href="{getUrl('act','dispBlogWrite','document_srl','')}">[{$lang->cmd_write}]</a>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@if($grant->list)-->
|
|
|
|
<!-- 페이지 네비게이션 -->
|
|
<div>
|
|
<a href="{getUrl('page','','document_srl','')}">[{$lang->first_page}]</a>
|
|
|
|
<!--@while($page_no = $page_navigation->getNextPage())-->
|
|
<!--@if($page == $page_no)-->
|
|
{$page_no}
|
|
<!--@else-->
|
|
<a href="{getUrl('page',$page_no,'document_srl','')}">[{$page_no}]</a>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
<a href="{getUrl('page',$page_navigation->last_page,'document_srl','')}">[{$lang->last_page}]</a>
|
|
</div>
|
|
|
|
<!--@end-->
|
|
|
|
<!--#include("footer.html")-->
|