rhymix/modules/blog/skins/default/list.html

35 lines
955 B
HTML

<!--#include("header.html")-->
<!-- 목록 -->
<div style="margin-bottom:20px;">
<!--@if($document_list)-->
<!--@foreach($document_list as $no => $document)-->
<!--@if($document && $grant->list)-->
<!--#include("./view_document.html")-->
<!--@end-->
<!--@end-->
<!--@else-->
{$lang->no_documents}
<!--@end-->
</div>
<!--@if($grant->list)-->
<!-- 페이지 네비게이션 -->
<div style="text-align:right">
<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")-->