Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lxndrblz/anatole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbarnes <jbarnes@effektd.dev>2021-04-29 09:25:36 +0300
committerGitHub <noreply@github.com>2021-04-29 09:25:36 +0300
commit57ed759029f41bc8d3c110159b0565544428176e (patch)
treeddb07175360e958822df8c2c2a544e02e2d5b0ae /README.md
parent36dfe91cf2c04b0760505cafef6122cc3e2ad4ba (diff)
Update README to contain socials (#189)
* Added socials documentation to the modifying the config.toml section of the readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/README.md b/README.md
index 58dd13a..6351d77 100644
--- a/README.md
+++ b/README.md
@@ -507,6 +507,34 @@ Include the newly generated `syntax.css` like a standard custom CSS script:
customCss = ["css/syntax.css"]
```
+### Socials
+
+You can add social media based icon links under your profile picture by using the `socialIcons` parameter.
+
+[Font Awesome](https://fontawesome.com/) is used for the icons.
+
+If you are using brand icons, prefix the icon value with `fab` if you are using a standard icon use `fas` instead.
+
+Ordering in the `config.toml` will determine the display order on the webpage.
+
+#### Example branded social entry
+
+```toml
+[[params.socialIcons]]
+icon = "fab fa-linkedin"
+title = "Linkedin"
+url = "https://de.linkedin.com/"
+```
+
+#### Example standard social entry
+
+```toml
+[[params.socialIcons]]
+icon = "fas fa-envelope"
+title = "e-mail"
+url = "mailto:mail@example.com"
+```
+
## License
Anatole is licensed under the [MIT license](https://github.com/lxndrblz/anatole/blob/master/LICENSE).