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

github.com/shenoybr/hugo-goa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksa Perovic <aleksa.perovic1@gmail.com>2022-08-01 13:12:43 +0300
committerGitHub <noreply@github.com>2022-08-01 13:12:43 +0300
commita7b5acd5b846d7008621b68858ae4922d530d5c4 (patch)
tree20b1494975c059df0d00bb7871d8e59338f815d3
parent674637099ca07bf36c154240128c311db18ca223 (diff)
add kaggle to social.html (#108)
* add buymeacoffee to social.html * add kaggle to social.html
-rw-r--r--exampleSite/config.toml1
-rw-r--r--layouts/partials/social.html4
2 files changed, 5 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index a16ae79..c72bea8 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -66,6 +66,7 @@ strava = "<username>"
skype = "<username>"
telegram = "<username>"
whatsapp = "<username>"
+kaggle = "<username>"
email = "you@example.com"
pgp = "<key_fingerprint>"
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 5dd5cf1..284ccc2 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -104,6 +104,9 @@
{{ with .Site.Params.social.whatsapp}}
<a href="https://wa.me/{{.}}" aria-label="Whatsapp" target="_blank"><i class="fab fa-whatsapp" aria-hidden="true"></i></a>
{{ end }}
+ {{ with .Site.Params.social.kaggle}}
+ <a href="https://kaggle.com/{{.}}" aria-label="Kaggle" target="_blank"><i class="fab fa-kaggle" aria-hidden="true"></i></a>
+ {{ end }}
{{ with .Site.Params.social.email }}
<a href="mailto:{{.}}" aria-label="Email"><i class="fas fa-envelope" aria-hidden="true"></i></a>
{{ end }}
@@ -154,6 +157,7 @@
{{ with .Site.Params.social.soundcloud}}"https://soundcloud.com/{{.}}",{{ end }}
{{ with .Site.Params.social.tumblr}}"https://{{.}}.tumblr.com",{{ end }}
{{ with .Site.Params.social.strava}}"https://www.strava.com/athletes/{{.}}",{{ end }}
+ {{ with .Site.Params.social.kaggle}}"https://www.kaggle.com/{{.}}",{{ end }}
"{{ .Site.Params.baseURL }}"
]
}