用于生成卡片样式的文章列表的短代码。
成为我们的资助者或赞助商,以支持我们的工作。
请勿于文章详情页使用此短代码,否则会导致无限递归问题,你可以在主页、部分列表中安全地使用它。
1{{< bs/article-cards >}}
limit
索引 | 名称 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
- | limit | number | - | 12 | - | - |
文章数目。
linkText
索引 | 名称 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
- | linkText | string | - | Read more | - | - |
鏈接文本,為空時,整個卡片可點擊。
sections
索引 | 名称 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
- | sections | string | - | - | - | - |
英文逗号分隔开的栏目名称,比如 blog,docs
,为空时表示所有栏目。
summaryLen
索引 | 名称 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
- | summaryLen | number | - | 240 | - | - |
摘要的最大长度。
limit
名称 | 上下文 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
limit | - | number | - | 12 | - | - |
文章的默认数量。
image_height
名称 | 上下文 | 类型 | 必填 | 默认值 | 版本 | 示例 |
---|---|---|---|---|---|---|
image_height | - | number | - | 240 | - | - |
图片的默认高度。
hugo.yaml
1params:
2 bootstrap:
3 article_cards:
4 image_height: 240
5 limit: 12
hugo.toml
1[params]
2 [params.bootstrap]
3 [params.bootstrap.article_cards]
4 image_height = 240
5 limit = 12
hugo.json
1{
2 "params": {
3 "bootstrap": {
4 "article_cards": {
5 "image_height": 240,
6 "limit": 12
7 }
8 }
9 }
10}