该模块为通用的页尾,其带有菜单和一些实用的子模块,如社交链接。
| Module | github.com/hbstack/footer | 
|---|---|
| Repository | ⭐ Please consider giving a star if your like it. | 
| Stars | |
| Version | |
| Used by | |
| Requirements | |
| License | |
| Usage | See how to use modules. | 
| Parameter | Type | Default | Description | 
|---|---|---|---|
title | string | - | 站点标题。 | 
copyright | string | - | 站点版权,支持 Markdown 语法和 {year} 占位符(今年)。 | 
| Parameter | Type | Default | Description | 
|---|---|---|---|
description | string | - | 站点描述,支持 Markdown 语法。 | 
| Parameter | Type | Default | Description | 
|---|---|---|---|
powered_by | boolean | true | 是否显示 Powered by 信息。 | 
site_title | string | - | 用于替代默认的站点标题。 | 
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}