diff --git a/_config.yml b/_config.yml
index c816095626de1..37b1245a70a5e 100644
--- a/_config.yml
+++ b/_config.yml
@@ -47,6 +47,7 @@ author:
instagram :
lastfm :
linkedin :
+ kaggle : # "https://www.kaggle.com/yourprofile"
mastodon : "mastodonhandle"
medium : #"add medium profile url here"
pinterest :
diff --git a/_includes/author-profile.html b/_includes/author-profile.html
index 4bd7b6b4e9018..a305892f76943 100644
--- a/_includes/author-profile.html
+++ b/_includes/author-profile.html
@@ -128,6 +128,9 @@
{{ author.name }}
{% if author.medium %}
Medium
{% endif %}
+ {% if author.kaggle %}
+ Kaggle
+ {% endif %}
diff --git a/_sass/_utilities.scss b/_sass/_utilities.scss
index e11c64242ffa0..72c3d70fbbfee 100644
--- a/_sass/_utilities.scss
+++ b/_sass/_utilities.scss
@@ -223,6 +223,11 @@ body:hover .visually-hidden button {
color: $instagram-color;
}
+ .fa-kaggle,
+ .fa-kaggle-square {
+ color: $kaggle-color;
+ }
+
.fa-lastfm,
.fa-lastfm-square {
color: $lastfm-color;
diff --git a/_sass/_variables.scss b/_sass/_variables.scss
index 6f893164efb68..c04264208e50e 100644
--- a/_sass/_variables.scss
+++ b/_sass/_variables.scss
@@ -75,6 +75,7 @@ $foursquare-color : #0072b1;
$github-color : #171516;
$google-plus-color : #dd4b39;
$instagram-color : #517fa4;
+$kaggle-color : #20c0ff;
$lastfm-color : #d51007;
$linkedin-color : #007bb6;
$mastodon-color : #6364ff;