| | |
| | | | Configuration | Type | Required | Description | Example | |
| | | | -------------- | ------ | -------- | ---------------------------------------- | ------------------------------- | |
| | | | name | string | Yes | Icon name. | `"Github"` | |
| | | | icon | string | Yes | FontAwesome icon classes. | `"fa fa-github"` | |
| | | | icon | string | Yes | FontAwesome icon classes. | `"fa-brands fa-github"` | |
| | | | weight | int | Yes | Icon order. | `1` | |
| | | | url | string | Yes | URL to redirect. | `"https://github.com/johndoe/"` | |
| | | |
| | |
| | | ```toml |
| | | [[params.social]] |
| | | name = "Github" |
| | | icon = "fa fa-github fa-2x" |
| | | icon = "fa-brands fa-github fa-2x" |
| | | weight = 1 |
| | | url = "https://github.com/johndoe/" |
| | | [[params.social]] |
| | | name = "Gitlab" |
| | | icon = "fa fa-gitlab fa-2x" |
| | | icon = "fa-brands fa-gitlab fa-2x" |
| | | weight = 2 |
| | | url = "https://gitlab.com/johndoe/" |
| | | [[params.social]] |
| | | name = "Twitter" |
| | | icon = "fa fa-twitter fa-2x" |
| | | icon = "fa-brands fa-twitter fa-2x" |
| | | weight = 3 |
| | | url = "https://twitter.com/johndoe/" |
| | | ``` |
| | |
| | | # Social links |
| | | [[params.social]] |
| | | name = "Github" |
| | | icon = "fa fa-github fa-2x" |
| | | icon = "fa-brands fa-github fa-2x" |
| | | weight = 1 |
| | | url = "https://github.com/johndoe/" |
| | | [[params.social]] |
| | | name = "Gitlab" |
| | | icon = "fa fa-gitlab fa-2x" |
| | | icon = "fa-brands fa-gitlab fa-2x" |
| | | weight = 2 |
| | | url = "https://gitlab.com/johndoe/" |
| | | [[params.social]] |
| | | name = "Twitter" |
| | | icon = "fa fa-twitter fa-2x" |
| | | icon = "fa-brands fa-twitter fa-2x" |
| | | weight = 3 |
| | | url = "https://twitter.com/johndoe/" |
| | | |