页头社交链接模块

本页内容

该模块于页头生成和显示社交链接。

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

站点参数

ParameterTypeDefaultDescription
socialsobject-社交媒体映射到用户标识

hugo.toml

1[params]
2  [params.hb]
3    [params.hb.header]
4      [params.hb.header.socials]
5        github = 'hbstack'
6        gmail = 'mailto:[email protected]'
7        twitter = 'razonyang'

hugo.yaml

1params:
2  hb:
3    header:
4      socials:
5        github: hbstack
6        gmail: mailto:[email protected]
7        twitter: razonyang

hugo.json

 1{
 2   "params": {
 3      "hb": {
 4         "header": {
 5            "socials": {
 6               "github": "hbstack",
 7               "gmail": "mailto:[email protected]",
 8               "twitter": "razonyang"
 9            }
10         }
11      }
12   }
13}