mirror of https://github.com/luizdepra/hugo-coder.git

Simon Hollingshead
31.39.2024 1fdac008175cba35ad5cbbac619671774c0e1afe
docs/configurations.md
@@ -140,7 +140,7 @@
| 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/"` |
@@ -149,17 +149,17 @@
```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/"
```
@@ -286,17 +286,17 @@
# 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/"