Become a backer or sponsor to support our work.
The footer’s socials generates social links.
| Module | github.com/hbstack/footer/modules/socials |
|---|---|
| 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 |
|---|---|---|---|
socials | object | - | Mapping from social media to their identifiers. |
hugo.toml
1[params]
2 [params.hb]
3 [params.hb.footer]
4 [params.hb.footer.socials]
5 _color = false
6 github = 'hbstack'
7 gmail = 'mailto:[email protected]'
8 twitter = 'razonyang'
hugo.yaml
1params:
2 hb:
3 footer:
4 socials:
5 _color: false
6 github: hbstack
7 gmail: mailto:[email protected]
8 twitter: razonyang
hugo.json
1{
2 "params": {
3 "hb": {
4 "footer": {
5 "socials": {
6 "_color": false,
7 "github": "hbstack",
8 "gmail": "mailto:[email protected]",
9 "twitter": "razonyang"
10 }
11 }
12 }
13 }
14}
To disable the colorful icon by setting
_colorasfalse.