內容面板模塊

本頁內容

該模塊於單頁頁面顯示一個內容面板,其包含了譯文、評論和倉庫相關按鈕。

Modulegithub.com/hbstack/content-panel
Repository⭐ Please consider giving a star if your like it.
Stars
Version
Used by
Requirements
License
UsageSee how to use modules.

站點參數

ParameterTypeRequiredDefaultDescription
bottomstring-20pxbottom 屬性。
commentsboolean-truetrue 時全局禁用評論。
repoobject--倉庫設置。
repo.branchstring-main分支名稱。
repo.repostringY-倉庫名稱,如 user/name
repo.servicestringY-Git 服務提供商:githubgitlabgiteecodeberg
repo.service_baseurlstring--自託管的 Git 服務器 URL。
repo.subpathstring--內容子路徑,如 exampleSite

hugo.toml

 1[params]
 2  [params.hb]
 3    [params.hb.content_panel]
 4      bottom = '20px'
 5      comments = true
 6      [params.hb.content_panel.repo]
 7        branch = 'main'
 8        repo = 'user/name'
 9        service = 'github'
10        subpath = 'exampleSite'

hugo.yaml

 1params:
 2  hb:
 3    content_panel:
 4      bottom: 20px
 5      comments: true
 6      repo:
 7        branch: main
 8        repo: user/name
 9        service: github
10        subpath: exampleSite

hugo.json

 1{
 2   "params": {
 3      "hb": {
 4         "content_panel": {
 5            "bottom": "20px",
 6            "comments": true,
 7            "repo": {
 8               "branch": "main",
 9               "repo": "user/name",
10               "service": "github",
11               "subpath": "exampleSite"
12            }
13         }
14      }
15   }
16}
razonyang
2024年7月26日 星期五 2023年4月14日 星期五