fix: total pages in archives.html sample (#363)

```release-note
None
```
This commit is contained in:
BugKing
2024-05-29 15:57:11 +08:00
committed by GitHub
parent f995b1a5ae
commit 18b4ee061f
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ import ListedPostVo from "../vo/ListedPostVo.md";
<a th:href="@{${archives.prevUrl}}">
<span>上一页</span>
</a>
<span th:text="${archives.page} +' / '+ ${archives.total}"></span>
<span th:text="${archives.page} +' / '+ ${archives.totalPages}"></span>
<a th:href="@{${archives.nextUrl}}">
<span>下一页</span>
</a>