成為我們的資助者或贊助商,以支持我們的工作。
該模塊附帶了一個通用的分頁模板,其允許通過參數進行配置,如對齊方式、尺寸和兄弟節點的數量。
Module | github.com/hbstack/pagination |
---|---|
Repository | ⭐ Please consider giving a star if your like it. |
Stars | |
Version | |
Used by | |
Requirements | |
License | |
Usage | See how to use modules. |
模板接受一個 Paginator 變量。
1{{ partial "hb/modules/pagination/index" .Paginator }}
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
alignment | string | - | center | center 、start (左側)或 end (右側)。 |
size | string | - | - | 留空(中等), sm (小)或 lg (大)。 |
siblings | integer | - | 2 | 當前頁碼左右側的兄弟節點數量。 |
hugo.toml
1[params]
2 [params.hb]
3 [params.hb.pagination]
4 alignment = 'center'
5 siblings = 2
6 size = ''
hugo.yaml
1params:
2 hb:
3 pagination:
4 alignment: center
5 siblings: 2
6 size: ""
hugo.json
1{
2 "params": {
3 "hb": {
4 "pagination": {
5 "alignment": "center",
6 "siblings": 2,
7 "size": ""
8 }
9 }
10 }
11}