mirror of
https://ghfast.top/https://github.com/zsjy/halo-theme-dream2.0-plus.git
synced 2025-03-15 23:39:40 +08:00
40 lines
2.3 KiB
HTML
40 lines
2.3 KiB
HTML
<div xmlns:th="https://www.thymeleaf.org" xmlns:tj="http://www.w3.org/1999/html"
|
|
th:fragment="pagination (data, path)"
|
|
th:if="${data.totalPages > 1}"
|
|
class="card card-transparent"
|
|
th:with="urlParamStr = ${#strings.substringAfter(data.prevUrl,'?')},
|
|
urlParams = ${urlParamStr == null ? '' : ('?' + urlParamStr)}">
|
|
<nav class="pagination" aria-label="pagination">
|
|
<a th:href="${data.prevUrl}"
|
|
th:class="'pagination-previous' + ${data.hasPrevious()?'':' is-invisible is-hidden-mobile'}">上一页</a>
|
|
<a th:href="${data.nextUrl}"
|
|
th:class="'pagination-next' + ${data.hasNext()?'':' is-invisible is-hidden-mobile'}">下一页</a>
|
|
<ul class="pagination-list is-hidden-mobile"
|
|
th:with="p=${T(java.lang.Math).ceil(T(java.lang.Double).parseDouble(data.page) / 5.0) },start = ${(p * 5) - 5 +1 }, end=${p * 5}">
|
|
<th:block th:if="${data.totalPages <= 9}">
|
|
<li th:each="index : ${#numbers.sequence(1, data.totalPages)}">
|
|
<a
|
|
th:class="'pagination-link' + ${data.page == index ? ' is-current': ''}"
|
|
th:href="@{${path+'/page/'} + ${index} + ${urlParams}}" th:text="${index}"></a>
|
|
</li>
|
|
</th:block>
|
|
<th:block th:unless="${data.totalPages <= 9}"
|
|
th:with="start = ${(data.page > 5) ? data.page - 2 : 1},
|
|
end = ${start + ((data.page > 5) ? ((data.page < data.totalPages - 4) ? 4 : 6) : ((data.page < data.totalPages - 4) ? 6 : 8))}">
|
|
<th:block th:if="${data.page > 5}">
|
|
<li><a class="pagination-link" th:href="@{${path+'/page/1' + urlParams}}" th:text="1"></a></li>
|
|
<li><span class="pagination-ellipsis">…</span></li>
|
|
</th:block>
|
|
|
|
<li th:each="index : ${#numbers.sequence((end > data.totalPages) ? start - end + data.totalPages : start, (end > data.totalPages) ? data.totalPages : end)}"><a
|
|
th:class="'pagination-link' + ${data.page == index ? ' is-current': ''}"
|
|
th:href="@{${path+'/page/'} + ${index} + ${urlParams}}" th:text="${index}"></a></li>
|
|
|
|
<th:block th:if="${data.page < data.totalPages - 4}">
|
|
<li><span class="pagination-ellipsis">…</span></li>
|
|
<li><a class="pagination-link" th:href="@{${path+'/page/'} + ${data.totalPages} + ${urlParams}}" th:text="${data.totalPages}"></a></li>
|
|
</th:block>
|
|
</th:block>
|
|
</ul>
|
|
</nav>
|
|
</div> |