描述页面的额外信息,如创建日期、修改日期等。
成为我们的资助者或赞助商,以支持我们的工作。
Module | github.com/hbstack/revision |
---|---|
Repository | ⭐ Please consider giving a star if your like it. |
Stars | |
Version | |
Used by | |
Requirements | |
License | |
Usage | See how to use modules. |
模板 hb/modules/revision/index
接受当前页面变量作为上下文。
1{{- partial "hb/modules/revision/index" . }}
hugo.toml
1[hb]
2 [hb.revision]
3 created_at = true
4 date_format = ':date_full'
5 font_size = '.825rem'
6 icons = true
hugo.yaml
1hb:
2 revision:
3 created_at: true
4 date_format: :date_full
5 font_size: .825rem
6 icons: true
hugo.json
1{
2 "hb": {
3 "revision": {
4 "created_at": true,
5 "date_format": ":date_full",
6 "font_size": ".825rem",
7 "icons": true
8 }
9 }
10}
Name | Type | Default | Required | Description |
---|---|---|---|---|
date_format | string | :date_full | - | 另请参阅 time.Format。 |
icons | boolean | true | - | 是否显示图标。 |
font_size | string | .825rem | - | 文本字体大小。 |
created_at | boolean | true | - | 为 false 时,隐藏创建日期。 |
repo_service | string | - | - | 支持 github 。 |
repo_owner | string | - | - | 仓库所有者。 |
repo_name | string | - | - | 仓库名称。 |
repo_branch | string | master | - | 默认分支。 |
repo_subpath | string | - | - | 子路径。 |
repo_contributors | boolean | false | - | 是否显示贡献者。 |
repo_actions | boolean | true | - | 是否显示编辑、查看和历史按钮。 |
您需要设置 GITHUB_TOKEN
环境变量和 GitInfo 功能,以避免在启用 repo_contributors
时遇到 GitHub API 的速率限制问题。