From 6d8c8e98787c36ec867bac7ea6a0ac9d066c6710 Mon Sep 17 00:00:00 2001 From: rjzupkoii Date: Wed, 14 Feb 2024 20:28:05 -0500 Subject: [PATCH] Closes #696 with new Kaggle link --- _config.yml | 1 + _includes/author-profile.html | 3 +++ _sass/_utilities.scss | 5 +++++ _sass/_variables.scss | 1 + 4 files changed, 10 insertions(+) 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;