頁尾概覽

該模塊爲通用的頁尾,其帶有菜單和一些實用的子模塊,如社交鏈接。

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

站點配置

ParameterTypeDefaultDescription
titlestring-站點標題。
copyrightstring-站點版權,支持 Markdown 語法和 {year} 佔位符(今年)。

站點參數

ParameterTypeDefaultDescription
descriptionstring-站點描述,支持 Markdown 語法。

頁尾模塊參數

ParameterTypeDefaultDescription
powered_bybooleantrue是否顯示 Powered by 信息。
site_titlestring-用於替代默認的站點標題。
site_descriptionstring-用於替代默認的站點描述。
site_copyrightstring-用於替代默認的站點版權。

hugo.toml

1copyright = 'Copyright © 2022-{year} [COMPANY](https://example.com). All Rights Reserved.'
2title = 'HB (Hugo Bootstrap) Framework'
3[params]
4  description = 'Fast, responsive, flexible, modular, open source and feature-rich Hugo Bootstrap Framework.'
5  [params.hb]
6    [params.hb.footer]
7      powered_by = true
8      site_title = 'Site Title'

hugo.yaml

1copyright: Copyright © 2022-{year} [COMPANY](https://example.com). All Rights Reserved.
2params:
3  description: Fast, responsive, flexible, modular, open source and feature-rich Hugo
4    Bootstrap Framework.
5  hb:
6    footer:
7      powered_by: true
8      site_title: Site Title
9title: HB (Hugo Bootstrap) Framework

hugo.json

 1{
 2   "copyright": "Copyright © 2022-{year} [COMPANY](https://example.com). All Rights Reserved.",
 3   "params": {
 4      "description": "Fast, responsive, flexible, modular, open source and feature-rich Hugo Bootstrap Framework.",
 5      "hb": {
 6         "footer": {
 7            "powered_by": true,
 8            "site_title": "Site Title"
 9         }
10      }
11   },
12   "title": "HB (Hugo Bootstrap) Framework"
13}
razonyang
2024年7月26日 星期五 2023年2月17日 星期五