1.0版本

This commit is contained in:
LinRuiqi
2025-08-13 10:44:35 +08:00
parent 15b34193bd
commit 8f01ec446f
45 changed files with 4579 additions and 2 deletions

19
pagination.php Normal file
View File

@@ -0,0 +1,19 @@
<?php if ($this->have() && $this->getTotalPage() > 1): ?>
<div class="archive-pagination section-inner group">
<?php if ($this->_currentPage > 1): ?>
<div class="previous-posts-link">
<h4 class="title"><?php $this->pageLink('上一页', 'prev'); ?></h4>
</div>
<?php endif; ?>
<?php if ($this->_currentPage < $this->getTotalPage()): ?>
<div class="next-posts-link">
<h4 class="title"><?php $this->pageLink('下一页', 'next'); ?></h4>
</div>
<?php endif; ?>
</div> <!-- .pagination -->
<?php endif; ?>