Van
2018-12-05 12:07:11 +08:00
parent 60118624e7
commit 44f16a91f5
21 changed files with 97 additions and 97 deletions

View File

@@ -52,14 +52,14 @@
<div class="col-sm-4">
<#if 1 < paginationCurrentPageNum>
<#assign prePage = paginationCurrentPageNum - 1>
<a class="btn btn-success" href="${servePath}${path}/${prePage}">Newer</a>
<a class="btn btn-success" href="${servePath}${path}?p=${prePage}">Newer</a>
</#if>
</div>
<div class="col-sm-4 text-right">
<#if paginationCurrentPageNum < paginationPageCount>
<#assign nextPage = paginationCurrentPageNum + 1>
<a class="btn btn-success" href="${servePath}${path}/${nextPage}">Older</a>
<a class="btn btn-success" href="${servePath}${path}?p=${nextPage}">Older</a>
</#if>
</div>