成為我們的資助者或贊助商,以支持我們的工作。
本模塊於博客側邊欄顯示最近和精選的文章列表。
| Module | github.com/hbstack/blog/modules/sidebar/posts |
|---|---|
| Repository | ⭐ Please consider giving a star if your like it. |
| Stars | |
| Version | |
| Used by | |
| Requirements | |
| License | |
| Usage | See how to use modules. |
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
featured_posts | number | 5 | 精選文章的數量。 | |
fill | boolean | true | 爲 true 時,選項卡採用全寬。 | |
list_style | string | slide | 列表樣式:slide 或者 vertical。 | |
recent_posts | number | 5 | 最新文章的數量。 | |
style | string | pills | 選項卡樣式:pills、tabs 或 underline。 |
hugo.toml
1[params]
2 [params.hb]
3 [params.hb.blog]
4 [params.hb.blog.sidebar]
5 [params.hb.blog.sidebar.posts]
6 featured_count = 5
7 fill = true
8 list_style = 'slide'
9 recent_count = 5
10 style = 'pills'
hugo.yaml
1params:
2 hb:
3 blog:
4 sidebar:
5 posts:
6 featured_count: 5
7 fill: true
8 list_style: slide
9 recent_count: 5
10 style: pills
hugo.json
1{
2 "params": {
3 "hb": {
4 "blog": {
5 "sidebar": {
6 "posts": {
7 "featured_count": 5,
8 "fill": true,
9 "list_style": "slide",
10 "recent_count": 5,
11 "style": "pills"
12 }
13 }
14 }
15 }
16 }
17}