diff --git a/README.md b/README.md index 0c075ae..9afa938 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,8 @@ github = "https://github.com/johndoe" gitlab = "https://gitlab.com/johndoe" twitter = "https://twitter.com/johndoe" linkedin = "https://www.linkedin.com/in/john-doe-b1234567/" +stackoverflow = "https://stackoverflow.com/users/01234567/johndoe" +telegram = "https://t.me/johndoe" email = "john.doe@gmail.com" [extra.favicon] diff --git a/templates/index.html b/templates/index.html index 4958145..feb2f40 100644 --- a/templates/index.html +++ b/templates/index.html @@ -42,6 +42,21 @@

{% endif %} + + {% if config.extra.social.stackoverflow %} + + + + + + {% endif %} + {% if config.extra.social.telegram %} + + + + + + {% endif %} diff --git a/templates/layout.html b/templates/layout.html index f8f62c5..404efee 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -297,7 +297,7 @@

- © 2022 blow theme made with tailwindcss for Zola + © 2023 blow theme made with tailwindcss for Zola

diff --git a/theme.toml b/theme.toml index 18b9aec..69a90bc 100644 --- a/theme.toml +++ b/theme.toml @@ -85,8 +85,11 @@ github = "https://github.com/johndoe" gitlab = "https://gitlab.com/johndoe" twitter = "https://twitter.com/johndoe" linkedin = "https://www.linkedin.com/in/john-doe-b1234567/" +stackoverflow = "https://stackoverflow.com/users/01234567/johndoe" +telegram = "https://t.me/johndoe" email = "john.doe@gmail.com" + [extra.favicon] favicon = "/icons/favicon.ico" favicon_16x16 = "/icons/favicon-16x16.png"