This module is a universal footer, which ships with menus and some useful sub modules, i.e. social links.
| 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 | - | The site’s title. | 
copyright | string | - | The site’s copyright, supported Markdown syntax and {year} placeholder. | 
| Parameter | Type | Default | Description | 
|---|---|---|---|
description | string | - | The site’s description, supported Markdown syntax. | 
| Parameter | Type | Default | Description | 
|---|---|---|---|
powered_by | boolean | true | Whether to show the powered by. | 
site_title | string | - | Replace site title with this if set. | 
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}