From b2b1fbe3aaf7688dc938fe3a4f0c3c1380ca0266 Mon Sep 17 00:00:00 2001 From: r34ll Date: Mon, 29 May 2023 21:13:07 -0300 Subject: [PATCH] add Stackoverflow and Telegram svg --- README.md | 2 ++ templates/index.html | 15 +++++++++++++++ theme.toml | 3 +++ 3 files changed, 20 insertions(+) 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/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"